diff options
author | Graham Linden <graham@lindenlab.com> | 2019-06-27 09:10:38 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-06-27 09:10:38 -0700 |
commit | 8ba159fed90fc221003e85c5d2d3b82ec30d81bf (patch) | |
tree | 06c9e605db034a0e44c64fece4a6f69763c95d38 /indra/newview/llvosky.h | |
parent | cfdcd0fc8ce969ca7df4e88608ee6d3bc923954d (diff) |
SL-11151, SL-11504
Remove update threshold logic causing hiccups and rework sky updates.
Make deferred water do double transport again to match non-ALM rendering more closely.
Diffstat (limited to 'indra/newview/llvosky.h')
-rw-r--r-- | indra/newview/llvosky.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvosky.h b/indra/newview/llvosky.h index a9ef5474b6..e118cc7200 100644 --- a/indra/newview/llvosky.h +++ b/indra/newview/llvosky.h @@ -303,7 +303,7 @@ protected: void updateDirections(void); void initSkyTextureDirs(const S32 side, const S32 tile); - void createSkyTexture(AtmosphericsVars& vars, const S32 side, const S32 tile, bool skip_sky_tex); + void createSkyTexture(AtmosphericsVars& vars, const S32 side, const S32 tile, LLSkyTex* tex); LLPointer<LLViewerFetchedTexture> mSunTexturep[2]; LLPointer<LLViewerFetchedTexture> mMoonTexturep[2]; @@ -350,11 +350,11 @@ protected: LLPointer<LLCubeMap> mCubeMap; // Cube map for the environment S32 mDrawRefl; - LLFrameTimer mUpdateTimer; LLTimer mForceUpdateThrottle; bool mHeavenlyBodyUpdated ; AtmosphericsVars m_atmosphericsVars; + AtmosphericsVars m_lastAtmosphericsVars; LLAtmospherics m_legacyAtmospherics; }; |