diff options
author | Graham Linden <graham@lindenlab.com> | 2018-08-31 16:33:57 +0100 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2018-08-31 16:33:57 +0100 |
commit | c46b70c25770a7421486498df6a280c00bae5a2d (patch) | |
tree | 1f2f45365af18e2328ee25440834b08767a0ec3f /indra/newview/lldrawpoolwlsky.cpp | |
parent | 6f8f307858feaeec30e0be0ae3957022be715e4a (diff) |
Null out shader pointers after passes are complete (prevents them being non-null and masking crashes when graphics prefs change).
Diffstat (limited to 'indra/newview/lldrawpoolwlsky.cpp')
-rw-r--r-- | indra/newview/lldrawpoolwlsky.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/lldrawpoolwlsky.cpp b/indra/newview/lldrawpoolwlsky.cpp index 4bf47f4fd6..9defc33e30 100644 --- a/indra/newview/lldrawpoolwlsky.cpp +++ b/indra/newview/lldrawpoolwlsky.cpp @@ -91,6 +91,10 @@ void LLDrawPoolWLSky::beginRenderPass( S32 pass ) void LLDrawPoolWLSky::endRenderPass( S32 pass ) { + sky_shader = nullptr; + cloud_shader = nullptr; + sun_shader = nullptr; + moon_shader = nullptr; } void LLDrawPoolWLSky::beginDeferredPass(S32 pass) @@ -111,7 +115,10 @@ void LLDrawPoolWLSky::beginDeferredPass(S32 pass) void LLDrawPoolWLSky::endDeferredPass(S32 pass) { - + sky_shader = nullptr; + cloud_shader = nullptr; + sun_shader = nullptr; + moon_shader = nullptr; } void LLDrawPoolWLSky::renderFsSky(const LLVector3& camPosLocal, F32 camHeightLocal, LLGLSLShader * shader) const |