mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
AbstractFramebuffer: Fix Android reorder-ctor warning
Move declaration of m_additional_color_attachments so its initialization order matches that of the constructor.
This commit is contained in:
@ -44,9 +44,9 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
AbstractTexture* m_color_attachment;
|
AbstractTexture* m_color_attachment;
|
||||||
AbstractTexture* m_depth_attachment;
|
AbstractTexture* m_depth_attachment;
|
||||||
|
std::vector<AbstractTexture*> m_additional_color_attachments;
|
||||||
AbstractTextureFormat m_color_format;
|
AbstractTextureFormat m_color_format;
|
||||||
AbstractTextureFormat m_depth_format;
|
AbstractTextureFormat m_depth_format;
|
||||||
std::vector<AbstractTexture*> m_additional_color_attachments;
|
|
||||||
u32 m_width;
|
u32 m_width;
|
||||||
u32 m_height;
|
u32 m_height;
|
||||||
u32 m_layers;
|
u32 m_layers;
|
||||||
|
Reference in New Issue
Block a user