Fix initialization order warnings.

This commit is contained in:
Unknown W. Brackets
2013-10-19 13:59:48 -07:00
parent 2b11a6c92a
commit 9a9aa5b194
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -149,10 +149,10 @@ struct GPUDebugBuffer {
private:
bool alloc_;
u8 *data_;
u32 height_;
u32 stride_;
bool flipped_;
u32 height_;
GPUDebugBufferFormat fmt_;
bool flipped_;
};
class GPUDebugInterface {
@@ -203,4 +203,4 @@ public:
// cached framebuffers / textures / vertices?
// get content of specific framebuffer / texture?
// vertex / texture decoding?
};
};