Fix some compiler warnings/errors. Error in llinventorymodelbackgroundfetch was introduced by partial commit.

This commit is contained in:
Shyotl
2013-01-20 17:10:38 -06:00
parent e622e03d2a
commit dc106c5442
6 changed files with 8 additions and 3 deletions

View File

@@ -35,6 +35,7 @@
class LLTextureManagerBridge
{
public:
virtual ~LLTextureManagerBridge(){};
virtual LLPointer<LLGLTexture> getLocalTexture(BOOL usemipmaps = TRUE, BOOL generate_gl_tex = TRUE) = 0;
virtual LLPointer<LLGLTexture> getLocalTexture(const U32 width, const U32 height, const U8 components, BOOL usemipmaps, BOOL generate_gl_tex = TRUE) = 0;
virtual LLGLTexture* getFetchedTexture(const LLUUID &image_id) = 0;