mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #12099 from Dentomologist/abstractframebuffer_change_member_declaration_order
AbstractFramebuffer: Fix Android reorder-ctor warning
This commit is contained in:
commit
14a6076198
1 changed files with 1 additions and 1 deletions
|
@ -44,9 +44,9 @@ public:
|
|||
protected:
|
||||
AbstractTexture* m_color_attachment;
|
||||
AbstractTexture* m_depth_attachment;
|
||||
std::vector<AbstractTexture*> m_additional_color_attachments;
|
||||
AbstractTextureFormat m_color_format;
|
||||
AbstractTextureFormat m_depth_format;
|
||||
std::vector<AbstractTexture*> m_additional_color_attachments;
|
||||
u32 m_width;
|
||||
u32 m_height;
|
||||
u32 m_layers;
|
||||
|
|
Loading…
Add table
Reference in a new issue