summaryrefslogtreecommitdiff
path: root/indra/llrender/llvertexbuffer.h
diff options
context:
space:
mode:
authorDave Houlton <euclid@lindenlab.com>2021-05-05 13:09:16 -0600
committerDave Houlton <euclid@lindenlab.com>2021-05-06 14:52:47 -0600
commit5da88f5a809fd6f29d7704cfd947226e23714bd1 (patch)
tree2ff0db7770de026058bbdc67b01302504bca2f49 /indra/llrender/llvertexbuffer.h
parent2d53f5ea859195151bb4bc4d855165ef8b6fc226 (diff)
SL-15221 add VBO dirty bit to avoid many per-frame checks
Diffstat (limited to 'indra/llrender/llvertexbuffer.h')
-rw-r--r--indra/llrender/llvertexbuffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llrender/llvertexbuffer.h b/indra/llrender/llvertexbuffer.h
index dbe1a3687f..649fbb782c 100644
--- a/indra/llrender/llvertexbuffer.h
+++ b/indra/llrender/llvertexbuffer.h
@@ -88,6 +88,7 @@ public:
typedef std::list<Record> record_list_t;
std::vector<record_list_t> mFreeList;
std::vector<U32> mMissCount;
+ bool mMissCountDirty; // flag any changes to mFreeList or mMissCount
};