diff options
| author | Rye <rye@alchemyviewer.org> | 2025-12-01 17:29:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-01 17:29:44 -0500 |
| commit | c62735adc8fa5a31f6c306c6919c7e32e956976d (patch) | |
| tree | 90a6d7fd3d1c41a0610c6ed78bc4d63b37d250e9 /indra | |
| parent | c6f1b725bfb45af31182771a445edc3bac9cbeac (diff) | |
Fix alpha debug overlay rendering in probes and breaking scene lighting (#5058)
Signed-off-by: Rye <rye@alchemyviewer.org>
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lldrawpoolalpha.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lldrawpoolalpha.cpp b/indra/newview/lldrawpoolalpha.cpp index 87b6ce6cb3..bc45734e66 100644 --- a/indra/newview/lldrawpoolalpha.cpp +++ b/indra/newview/lldrawpoolalpha.cpp @@ -278,7 +278,7 @@ void LLDrawPoolAlpha::forwardRender(bool rigged) void LLDrawPoolAlpha::renderDebugAlpha() { - if (sShowDebugAlpha) + if (sShowDebugAlpha && !gCubeSnapshot) { gHighlightProgram.bind(); gGL.diffuseColor4f(1, 0, 0, 1); |
