summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2016-05-13 08:55:25 -0700
committerJose Fonseca <jfonseca@vmware.com>2016-05-13 08:55:25 -0700
commit1638519d03d51fe9e1955a5fb08b3a5e3b3ff6b4 (patch)
tree773b42da96d1331f01c1a3646354aa2b25680333
parent6195d6b89b57d038c6505e47d71a533821f7abf2 (diff)
gltrace: Fix lockedArrayCount initialization.
-rw-r--r--wrappers/gltrace.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/gltrace.hpp b/wrappers/gltrace.hpp
index c170d749..148bbc0c 100644
--- a/wrappers/gltrace.hpp
+++ b/wrappers/gltrace.hpp
@@ -50,7 +50,7 @@ public:
bool boundDrawable = false;
// whether glLockArraysEXT() has ever been called
- GLuint lockedArrayCount;
+ GLuint lockedArrayCount = 0;
Context(void) :
profile(glfeatures::API_GL, 1, 0)