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.cpp | |
| parent | 964f9e74d5e97fc46fc74d6afff97dad5c6381c3 (diff) | |
SL-20611 Incorporate water haze into new post effect atmospherics goodness
Diffstat (limited to 'indra/newview/lldrawpool.cpp')
| -rw-r--r-- | indra/newview/lldrawpool.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/lldrawpool.cpp b/indra/newview/lldrawpool.cpp index fca0f1c978..50210b06c4 100644 --- a/indra/newview/lldrawpool.cpp +++ b/indra/newview/lldrawpool.cpp @@ -320,6 +320,14 @@ void LLFacePool::addFaceReference(LLFace *facep) } } +void LLFacePool::pushFaceGeometry() +{ + for (LLFace* const& face : mDrawFace) + { + face->renderIndexed(); + } +} + BOOL LLFacePool::verify() const { BOOL ok = TRUE; |
