diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-04-05 11:55:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 11:55:51 -0500 |
commit | 1f79379bf215c5368337c64b4f72c7c9ef3e09c2 (patch) | |
tree | 0864f4005090f49a59c0eabca3bd7760b5c1cf5e /indra/llrender | |
parent | d6d634d29ff351450306e211982a98a0050f1b42 (diff) |
SL-19538 Followup -- tune exposure parameters and clamp local light ambiance. Make render targets 16F and scrube NaNs (thanks Rye). Update midday. (#154)
Diffstat (limited to 'indra/llrender')
-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 ac48a633c7..7d3a92237b 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); - U32 format = components == 4 ? GL_RGBA12 : GL_RGB16F; + U32 format = components == 4 ? GL_RGBA16F : GL_RGB16F; U32 mip = 0; |