diff options
author | Rye Mutt <rye@lindenlab.com> | 2024-09-12 09:00:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 11:00:58 -0500 |
commit | 264c57831bc6ca9be1c465c10a2558c3d28b936e (patch) | |
tree | d8c76b25f78f1a75aa3c29b47d68f61d4a92801b /indra | |
parent | 1f6423214c9f8db374970c1b876a16e098697e64 (diff) |
Fix warning spam from missing call to unmapBuffer introduced in #2544 (#2556)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llrender/llvertexbuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp index c1f239fc43..666d792d1d 100644 --- a/indra/llrender/llvertexbuffer.cpp +++ b/indra/llrender/llvertexbuffer.cpp @@ -1600,7 +1600,7 @@ void LLVertexBuffer::setBuffer() if (mMapped) { - LL_WARNS() << "Missing call to unmapBuffer or flushBuffers" << LL_ENDL; + LL_WARNS_ONCE() << "Missing call to unmapBuffer or flushBuffers" << LL_ENDL; _unmapBuffer(); } |