diff options
| author | Erik Kundiman <erik@megapahit.org> | 2025-10-30 11:19:47 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2025-10-30 11:19:47 +0800 |
| commit | 0acfb74bbcf801978905db45d326d8538a32b1ed (patch) | |
| tree | e05532ed6e50ac934b01f07659f4d592d7904874 /indra/llappearance/lltexlayer.cpp | |
| parent | 4699ec3044d48c080bc58e1e5ae7aac85fab1ffe (diff) | |
| parent | 5a0ba25d83862e7d220c1ae62173b537b7db5b52 (diff) | |
Merge tag 'Second_Life_Release#5a0ba25d-2025.08' into 2025.08
Diffstat (limited to 'indra/llappearance/lltexlayer.cpp')
| -rw-r--r-- | indra/llappearance/lltexlayer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llappearance/lltexlayer.cpp b/indra/llappearance/lltexlayer.cpp index f72f47723f..bcb00e6afd 100644 --- a/indra/llappearance/lltexlayer.cpp +++ b/indra/llappearance/lltexlayer.cpp @@ -1892,7 +1892,10 @@ LLGLTexture* LLTexLayerStaticImageList::getTexture(const std::string& file_name, image_raw->copyUnscaledAlphaMask(alpha_image_raw, LLColor4U::black); } - tex->createGLTexture(0, image_raw, 0, true, LLGLTexture::LOCAL); + if (!tex->createGLTexture(0, image_raw, 0, true, LLGLTexture::LOCAL)) + { + LL_WARNS() << "Failed to create GL texture for image: " << file_name << LL_ENDL; + } gGL.getTexUnit(0)->bind(tex); tex->setAddressMode(LLTexUnit::TAM_CLAMP); |
