summaryrefslogtreecommitdiff
path: root/indra/llrender/llvertexbuffer.h
diff options
context:
space:
mode:
authorEuclid Linden <euclid@lindenlab.com>2021-05-12 23:13:39 +0000
committerEuclid Linden <euclid@lindenlab.com>2021-05-12 23:13:39 +0000
commit403133e0dff6e8be26e091e1514f34702435a105 (patch)
tree5cca549e87d8c4f222679ff1da9d288486078890 /indra/llrender/llvertexbuffer.h
parent2d53f5ea859195151bb4bc4d855165ef8b6fc226 (diff)
parent7131f8c46499b8f856c35137cda5ad4cb1bce527 (diff)
Merged in euclid-15221 (pull request #563)
SL-15221 Fix off-by-one error in block size for VBO allocation tracking Approved-by: Michael Pohoreski
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
};