diff options
author | Oz Linden <oz@lindenlab.com> | 2011-07-07 14:08:36 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-07-07 14:08:36 -0400 |
commit | 5d92dc44026f7dd237aa871593080fd151064e62 (patch) | |
tree | 4f0c70e428824a0a01e38ff77850fb009b6c13f0 /indra/llrender/llimagegl.cpp | |
parent | 7614ceff24129643ecb96f57f0491507e4ff8dbd (diff) | |
parent | 4d77146b9016a4db37112e153e71c05c596f7fdc (diff) |
merge changes for 2.7.4 release
Diffstat (limited to 'indra/llrender/llimagegl.cpp')
-rw-r--r-- | indra/llrender/llimagegl.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/indra/llrender/llimagegl.cpp b/indra/llrender/llimagegl.cpp index d408077c68..60a5962234 100644 --- a/indra/llrender/llimagegl.cpp +++ b/indra/llrender/llimagegl.cpp @@ -1083,12 +1083,17 @@ void LLImageGL::generateTextures(S32 numTextures, U32 *textures) } // static -void LLImageGL::deleteTextures(S32 numTextures, U32 *textures) +void LLImageGL::deleteTextures(S32 numTextures, U32 *textures, bool immediate) { for (S32 i = 0; i < numTextures; i++) { sDeadTextureList.push_back(textures[i]); } + + if (immediate) + { + LLImageGL::deleteDeadTextures(); + } } // static @@ -1413,11 +1418,13 @@ void LLImageGL::deleteDeadTextures() { GLuint tex = sDeadTextureList.front(); sDeadTextureList.pop_front(); - for (int i = 0; i < gGLManager.mNumTextureUnits; i++) + for (int i = 0; i < gGLManager.mNumTextureImageUnits; i++) { - if (sCurrentBoundTextures[i] == tex) + LLTexUnit* tex_unit = gGL.getTexUnit(i); + + if (tex_unit->getCurrTexture() == tex) { - gGL.getTexUnit(i)->unbind(LLTexUnit::TT_TEXTURE); + tex_unit->unbind(tex_unit->getCurrType()); stop_glerror(); } } |