diff options
author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-12-17 00:21:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 22:21:42 +0000 |
commit | a66ec26b814f832ff40e5e8100f0b90822ef4858 (patch) | |
tree | 763c34f75f905a253b14e6fd758c254e8ba83d84 /indra | |
parent | e097f194d9acb06172f480f747d3bf7a77da1b84 (diff) |
#3295 Crash scaling texture down (#3296)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llrender/llimagegl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llrender/llimagegl.cpp b/indra/llrender/llimagegl.cpp index 5ac3243fd4..3858811a50 100644 --- a/indra/llrender/llimagegl.cpp +++ b/indra/llrender/llimagegl.cpp @@ -2434,7 +2434,9 @@ bool LLImageGL::scaleDown(S32 desired_discard) { LL_PROFILE_ZONE_SCOPED_CATEGORY_TEXTURE; - if (mTarget != GL_TEXTURE_2D) + if (mTarget != GL_TEXTURE_2D + || mFormatInternal == -1 // not initialized + ) { return false; } |