diff options
author | Dave Parks <davep@lindenlab.com> | 2023-03-28 14:30:59 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-03-28 14:30:59 -0500 |
commit | 10f66c05190585e9de2e85831712323c297d81c4 (patch) | |
tree | 7ca97a8f67aea3714a88e4e5016be12a0d1f62e5 /indra/newview/pipeline.h | |
parent | 9bf08f553aa59122a606487f1b28bd6083d9f966 (diff) |
DRTVWR-559 Dynamically adjust exposure.
Diffstat (limited to 'indra/newview/pipeline.h')
-rw-r--r-- | indra/newview/pipeline.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/pipeline.h b/indra/newview/pipeline.h index 4cefb719fd..19d511c2c4 100644 --- a/indra/newview/pipeline.h +++ b/indra/newview/pipeline.h @@ -300,8 +300,6 @@ public: void bindReflectionProbes(LLGLSLShader& shader); void unbindReflectionProbes(LLGLSLShader& shader); - - void renderDeferredLighting(); void postDeferredGammaCorrect(LLRenderTarget* screen_target); @@ -679,6 +677,12 @@ public: // for use by SSR LLRenderTarget mSceneMap; + // exposure map for getting average color in scene + LLRenderTarget mExposureMap; + + // tonemapped and gamma corrected render ready for post + LLRenderTarget mPostMap; + LLCullResult mSky; LLCullResult mReflectedObjects; LLCullResult mRefractedObjects; |