diff options
author | Dave Parks <davep@lindenlab.com> | 2024-05-14 14:24:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 14:24:21 -0500 |
commit | 7bfb29687c2e621d3aae9e2794a57dc0168fdf1d (patch) | |
tree | 50b128638c6ce451234ac71c734c3376ea1d6046 /indra/newview/llreflectionmapmanager.cpp | |
parent | 193d9d5f767c2bfad1dc5ced4fa630d05ae798ae (diff) | |
parent | d21f29b6439db5b954d630a4461fe77365cdb4b3 (diff) |
Merge pull request #1446 from Ansariel/project/gltf_development
Fix broken merge and BOOL/bool issues
Diffstat (limited to 'indra/newview/llreflectionmapmanager.cpp')
-rw-r--r-- | indra/newview/llreflectionmapmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llreflectionmapmanager.cpp b/indra/newview/llreflectionmapmanager.cpp index 1762d7d5c1..2c01495934 100644 --- a/indra/newview/llreflectionmapmanager.cpp +++ b/indra/newview/llreflectionmapmanager.cpp @@ -73,8 +73,8 @@ void load_exr(const std::string& filename) LLImageGL::generateTextures(1, &texName); gEXRImage = new LLImageGL(texName, 4, GL_TEXTURE_2D, GL_RGB16F, GL_RGB16F, GL_FLOAT, LLTexUnit::TAM_CLAMP); - gEXRImage->setHasMipMaps(TRUE); - gEXRImage->setUseMipMaps(TRUE); + gEXRImage->setHasMipMaps(true); + gEXRImage->setUseMipMaps(true); gEXRImage->setFilteringOption(LLTexUnit::TFO_TRILINEAR); gGL.getTexUnit(0)->bind(gEXRImage); |