Skip to content
Snippets Groups Projects
Commit 60196f6a authored by David Parks's avatar David Parks
Browse files

SL-20611 Followup -- fix for impostors being invisible.

parent 1f7f30ae
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -8235,6 +8235,11 @@ void LLPipeline::doAtmospherics()
{
LL_PROFILE_ZONE_SCOPED_CATEGORY_PIPELINE;
if (sImpostorRender)
{ // do not attempt atmospherics on impostors
return;
}
if (RenderDeferredAtmospheric)
{
{
......@@ -8294,6 +8299,10 @@ void LLPipeline::doAtmospherics()
void LLPipeline::doWaterHaze()
{
LL_PROFILE_ZONE_SCOPED_CATEGORY_PIPELINE;
if (sImpostorRender)
{ // do not attempt water haze on impostors
return;
}
if (RenderDeferredAtmospheric)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment