SL-20611 Followup -- fix for impostors being invisible.
parent
1f7f30aea4
commit
60196f6ab3
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue