Fixup texture compression.

This commit is contained in:
Shyotl
2019-03-05 03:11:04 -06:00
parent 6dc2e9e6df
commit 5a7e0b05a4
11 changed files with 61 additions and 54 deletions

View File

@@ -119,10 +119,10 @@ public:
static void initClass();
static void updateClass(const F32 velocity, const F32 angular_velocity) ;
LLViewerTexture(BOOL usemipmaps = TRUE, bool allow_compression = true);
LLViewerTexture(const LLUUID& id, BOOL usemipmaps, bool allow_compression = true) ;
LLViewerTexture(const LLImageRaw* raw, BOOL usemipmaps, bool allow_compression = true) ;
LLViewerTexture(const U32 width, const U32 height, const U8 components, BOOL usemipmaps, bool allow_compression = true) ;
LLViewerTexture(BOOL usemipmaps = TRUE, bool allow_compression = false);
LLViewerTexture(const LLUUID& id, BOOL usemipmaps, bool allow_compression = false) ;
LLViewerTexture(const LLImageRaw* raw, BOOL usemipmaps, bool allow_compression = false) ;
LLViewerTexture(const U32 width, const U32 height, const U8 components, BOOL usemipmaps, bool allow_compression = false) ;
void setNeedsAlphaAndPickMask(BOOL need_mask) { if(mGLTexturep)mGLTexturep->setNeedsAlphaAndPickMask(need_mask); }