mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-09 16:52:12 +02:00
fix uninitialized read
This commit is contained in:
parent
766a5c7f81
commit
7ee64258ec
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue