From 71fb10593340e0a6a4980767a317460a8419f76d Mon Sep 17 00:00:00 2001 From: Kearwood Gilbert Date: Tue, 20 Dec 2022 21:12:01 -0800 Subject: [PATCH] KRTexture::getFaceCount is now pure virtual --- kraken/KRTexture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kraken/KRTexture.h b/kraken/KRTexture.h index 550a767..35631b5 100755 --- a/kraken/KRTexture.h +++ b/kraken/KRTexture.h @@ -83,7 +83,7 @@ public: int getMaxMipMap(); int getMinMipMap(); bool hasMipmaps(); - virtual int getFaceCount() const; + virtual int getFaceCount() const = 0; kraken_stream_level getStreamLevel(KRTexture::texture_usage_t textureUsage); float getLastFrameLodCoverage() const;