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

master
RunitaiLinden 2023-12-13 12:47:04 -06:00
parent 1f7f30aea4
commit 60196f6ab3
1 changed files with 9 additions and 0 deletions

View File

@ -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)
{