diff options
| author | Rye Mutt <rye@alchemyviewer.org> | 2024-08-29 15:55:19 -0400 | 
|---|---|---|
| committer | Rye Mutt <rye@alchemyviewer.org> | 2024-08-29 16:32:15 -0400 | 
| commit | 8759edd575bf34798237f559a4a515ce76a7b7d0 (patch) | |
| tree | 4c34910ff7bf836987c8a310dc18932d809045b5 | |
| parent | e2809755c5e4a6a6d3c8f27911865efe4020d679 (diff) | |
Fix SSR clamping hdr brightness ranges
| -rw-r--r-- | indra/newview/pipeline.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index ce43982f35..cda9fcad9e 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -871,7 +871,7 @@ bool LLPipeline::allocateScreenBuffer(U32 resX, U32 resY, U32 samples)          if(RenderScreenSpaceReflections)          { -            mSceneMap.allocate(resX, resY, GL_RGB, true); +            mSceneMap.allocate(resX, resY, GL_RGBA16F, true);          }          else          {  | 
