summaryrefslogtreecommitdiff
path: root/indra/llrender/llcubemaparray.h
diff options
context:
space:
mode:
authorJonathan "Geenz" Goodman <geenz@lindenlab.com>2025-03-24 17:59:13 -0400
committerGitHub <noreply@github.com>2025-03-24 17:59:13 -0400
commit5e5d466628f3576bb48b63f143502ea914f79bca (patch)
tree643598d6a844100c95d9383b155c8711ac14931f /indra/llrender/llcubemaparray.h
parent7fc9c0baa430875dce44778d5d72b302858f9f4e (diff)
Readd probe count setting (#3793)
* Readd max probe count. Disable dynamic probe allocation by default (for now).
Diffstat (limited to 'indra/llrender/llcubemaparray.h')
-rw-r--r--indra/llrender/llcubemaparray.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llrender/llcubemaparray.h b/indra/llrender/llcubemaparray.h
index bfc72a321d..6b4288cb23 100644
--- a/indra/llrender/llcubemaparray.h
+++ b/indra/llrender/llcubemaparray.h
@@ -36,6 +36,7 @@ class LLCubeMapArray : public LLRefCount
{
public:
LLCubeMapArray();
+ LLCubeMapArray(LLCubeMapArray& lhs, U32 width, U32 count);
static GLenum sTargets[6];
@@ -73,4 +74,5 @@ protected:
U32 mWidth = 0;
U32 mCount = 0;
S32 mTextureStage;
+ bool mHDR;
};