2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

gl_buffer_cache: Default initialize member variables

Ensures that the cache always has a deterministic initial state.
This commit is contained in:
Lioncash 2018-09-06 15:03:01 -04:00
parent 8d685a29bc
commit ddcdbce067

View file

@ -49,9 +49,9 @@ protected:
private: private:
OGLStreamBuffer stream_buffer; OGLStreamBuffer stream_buffer;
u8* buffer_ptr; u8* buffer_ptr = nullptr;
GLintptr buffer_offset; GLintptr buffer_offset = 0;
GLintptr buffer_offset_base; GLintptr buffer_offset_base = 0;
}; };
} // namespace OpenGL } // namespace OpenGL