diff options
author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2025-02-14 13:16:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-14 13:16:35 -0500 |
commit | c60061b504c7d72e627cdf24ba1c9131c4057286 (patch) | |
tree | 78e46ae8d1d5cc7abb4b70e243111a21a8000b16 /indra/llrender/llcubemaparray.cpp | |
parent | 8f8453c3e859750ada26adc29ed52e3f37e013f6 (diff) |
Switch from GL_RGB16F to GL_R11F_G11F_B10F for probes (#3562)
* #3561 Switch from GL_RGB16F to GL_R11F_G11F_B10F for reflection probes to help reduce memory bandwidth and VRAM pressure.
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 635f079581..d0a97dc2c6 100644 --- a/indra/llrender/llcubemaparray.cpp +++ b/indra/llrender/llcubemaparray.cpp @@ -127,7 +127,7 @@ void LLCubeMapArray::allocate(U32 resolution, U32 components, U32 count, bool us bind(0); free_cur_tex_image(); - U32 format = components == 4 ? GL_RGBA16F : GL_RGB16F; + U32 format = components == 4 ? GL_RGBA16F : GL_R11F_G11F_B10F; if (!hdr) { format = components == 4 ? GL_RGBA8 : GL_RGB8; |