diff options
author | nat-goodspeed <nat@lindenlab.com> | 2023-08-17 13:05:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 13:05:14 -0400 |
commit | 9d981c72f8d098baeae9e9fa1e3c4737f957bbe2 (patch) | |
tree | e041df46ca357f3071b4c9c7a0799090c45669a6 /indra/llrender | |
parent | e06cdc329a83b4c1e52eaf39b4b030763b7d8568 (diff) | |
parent | 6cf6f81ae865d4e15b715a93408c7970b6936ce8 (diff) |
Merge pull request #332 from secondlife/DRTVWR-588-monterey
Remove unused counters that cause fatal warnings
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llgl.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp index 193cfa64b8..cfc9ce735d 100644 --- a/indra/llrender/llgl.cpp +++ b/indra/llrender/llgl.cpp @@ -2329,9 +2329,7 @@ void LLGLSyncFence::wait() if (mSync) { while (glClientWaitSync(mSync, 0, FENCE_WAIT_TIME_NANOSECONDS) == GL_TIMEOUT_EXPIRED) - { //track the number of times we've waited here - static S32 waits = 0; - waits++; + { } } #endif |