fix uninitialized read

This commit is contained in:
Seth Alves 2019-06-04 12:57:20 -07:00
parent 766a5c7f81
commit 7ee64258ec

View file

@ -51,9 +51,9 @@ protected:
float _textureAspectRatio { 1.0f };
bool _textureLoaded { false };
bool _isUVModeStretch;
bool _faceCamera;
bool _glow;
bool _isUVModeStretch { false };
bool _faceCamera { false };
bool _glow { false };
size_t _numVertices;
gpu::BufferPointer _polylineDataBuffer;