diff options
author | Dave Houlton <euclid@lindenlab.com> | 2021-05-05 13:09:16 -0600 |
---|---|---|
committer | Dave Houlton <euclid@lindenlab.com> | 2021-05-06 14:52:47 -0600 |
commit | 5da88f5a809fd6f29d7704cfd947226e23714bd1 (patch) | |
tree | 2ff0db7770de026058bbdc67b01302504bca2f49 /indra/llrender/llvertexbuffer.h | |
parent | 2d53f5ea859195151bb4bc4d855165ef8b6fc226 (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.h | 1 |
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 }; |