summaryrefslogtreecommitdiff
path: root/indra/newview/lldrawpool.h
diff options
context:
space:
mode:
authorRunitaiLinden <davep@lindenlab.com>2023-11-30 12:01:45 -0600
committerRunitaiLinden <davep@lindenlab.com>2023-11-30 12:01:45 -0600
commit68875523e09f9fe06fc4b3cd5225995bb13966c3 (patch)
tree75b5aaae7665360c152c399a8cf80cb6147902e2 /indra/newview/lldrawpool.h
parent964f9e74d5e97fc46fc74d6afff97dad5c6381c3 (diff)
SL-20611 Incorporate water haze into new post effect atmospherics goodness
Diffstat (limited to 'indra/newview/lldrawpool.h')
-rw-r--r--indra/newview/lldrawpool.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/lldrawpool.h b/indra/newview/lldrawpool.h
index 5414dba6bf..4300670445 100644
--- a/indra/newview/lldrawpool.h
+++ b/indra/newview/lldrawpool.h
@@ -118,8 +118,8 @@ public:
virtual LLViewerTexture* getTexture() = 0;
virtual BOOL isFacePool() { return FALSE; }
virtual void resetDrawOrders() = 0;
+ virtual void pushFaceGeometry() {}
-protected:
S32 mShaderLevel;
S32 mId;
U32 mType; // Type of draw pool
@@ -429,6 +429,9 @@ public:
BOOL isFacePool() { return TRUE; }
+ // call drawIndexed on every draw face
+ void pushFaceGeometry();
+
friend class LLFace;
friend class LLPipeline;
public: