diff options
author | Dave Parks <davep@lindenlab.com> | 2022-09-23 18:13:20 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-09-23 18:13:20 -0500 |
commit | 64cfcea3f4ea6d8120bdf2dedc034f61eb2c07fc (patch) | |
tree | 03c0488d727f24c5e572fa33f6a91fdf2867b56b /indra/llrender/llcubemaparray.cpp | |
parent | f4d49f887e0a7b8e0230faa22ce5b2efc026c54d (diff) |
SL-18190 Reduce banding - experiment with RGB16F reflection probes
Diffstat (limited to 'indra/llrender/llcubemaparray.cpp')
-rw-r--r-- | indra/llrender/llcubemaparray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llcubemaparray.cpp b/indra/llrender/llcubemaparray.cpp index 0e452b3d0a..abb93093e0 100644 --- a/indra/llrender/llcubemaparray.cpp +++ b/indra/llrender/llcubemaparray.cpp @@ -122,7 +122,7 @@ void LLCubeMapArray::allocate(U32 resolution, U32 components, U32 count, BOOL us bind(0); - glTexImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, 0, GL_RGB10_A2, resolution, resolution, count*6, 0, + glTexImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, 0, GL_RGB16F, resolution, resolution, count*6, 0, GL_RGB, GL_UNSIGNED_BYTE, nullptr); mImage->setAddressMode(LLTexUnit::TAM_CLAMP); |