diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-11-30 12:01:45 -0600 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-11-30 12:01:45 -0600 |
commit | 68875523e09f9fe06fc4b3cd5225995bb13966c3 (patch) | |
tree | 75b5aaae7665360c152c399a8cf80cb6147902e2 /indra/newview/lldrawpool.h | |
parent | 964f9e74d5e97fc46fc74d6afff97dad5c6381c3 (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.h | 5 |
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: |