summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/AbstractFramebuffer.h
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2023-08-12 20:37:01 -0700
committerDentomologist <dentomologist@gmail.com>2023-08-12 20:48:47 -0700
commit720191d1f75f43bb8b649bad571114db007ae048 (patch)
tree36714245c0d1413e201410d49f1c6a8388b3ecd3 /Source/Core/VideoCommon/AbstractFramebuffer.h
parentbc47a286535527f46569b8a0ec0a0b402c83ec3c (diff)
AbstractFramebuffer: Fix Android reorder-ctor warning
Move declaration of m_additional_color_attachments so its initialization order matches that of the constructor.
Diffstat (limited to 'Source/Core/VideoCommon/AbstractFramebuffer.h')
-rw-r--r--Source/Core/VideoCommon/AbstractFramebuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/AbstractFramebuffer.h b/Source/Core/VideoCommon/AbstractFramebuffer.h
index e4c3b0451c..194dca24bc 100644
--- a/Source/Core/VideoCommon/AbstractFramebuffer.h
+++ b/Source/Core/VideoCommon/AbstractFramebuffer.h
@@ -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;