diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-08-19 09:54:07 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-19 09:54:07 +0300 | 
| commit | 54fd466b3b036116ca20b6b7ee856c99b1646f53 (patch) | |
| tree | e0685289af16c0e0c3490e4d7be701a4598125ac | |
| parent | 4e19b2ae34a0cd5e19068bedb8612ba4ea89e8c1 (diff) | |
Update indra/newview/pipeline.cpp
Fix build error
| -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 979d0eba7e..98fdb68222 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -896,7 +896,7 @@ bool LLPipeline::allocateShadowBuffer(U32 resX, U32 resY)      LL_PROFILE_ZONE_SCOPED_CATEGORY_DISPLAY;      S32 shadow_detail = RenderShadowDetail; -    F32 scale = gCubeSnapshot ? 1.0 : llmax(0.f, RenderShadowResolutionScale); // Don't scale probe shadow maps +    F32 scale = gCubeSnapshot ? 1.0f : llmax(0.f, RenderShadowResolutionScale); // Don't scale probe shadow maps      U32 sun_shadow_map_width = BlurHappySize(resX, scale);      U32 sun_shadow_map_height = BlurHappySize(resY, scale); | 
