diff options
author | Dave Parks <davep@lindenlab.com> | 2013-06-18 17:24:21 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2013-06-18 17:24:21 -0500 |
commit | ccd04cd66c0a550694fefe41042ef47466780a92 (patch) | |
tree | edc2e505d9e80cd597473e62987e2fdf2a3a9b84 /indra/llrender/llrendertarget.h | |
parent | 8d67ad3d86cbc57631c4b56926ff9a0ea5b82897 (diff) |
Occlusion culling overhaul.
Diffstat (limited to 'indra/llrender/llrendertarget.h')
-rwxr-xr-x | indra/llrender/llrendertarget.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llrender/llrendertarget.h b/indra/llrender/llrendertarget.h index 765a727b5b..66a9874a6b 100755 --- a/indra/llrender/llrendertarget.h +++ b/indra/llrender/llrendertarget.h @@ -63,6 +63,9 @@ public: static bool sUseFBO; static U32 sBytesAllocated; static U32 sCurFBO; + static U32 sCurResX; + static U32 sCurResY; + LLRenderTarget(); ~LLRenderTarget(); @@ -146,6 +149,9 @@ protected: std::vector<U32> mInternalFormat; U32 mFBO; U32 mPreviousFBO; + U32 mPreviousResX; + U32 mPreviousResY; + U32 mDepth; bool mStencil; bool mUseDepth; |