diff options
| author | JosJuice <josjuice@gmail.com> | 2023-08-13 10:08:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-13 10:08:33 +0200 |
| commit | 14a60761983abb0364161eb69d17376d512c0648 (patch) | |
| tree | 36714245c0d1413e201410d49f1c6a8388b3ecd3 /Source/Core/VideoCommon/AbstractFramebuffer.h | |
| parent | bc47a286535527f46569b8a0ec0a0b402c83ec3c (diff) | |
| parent | 720191d1f75f43bb8b649bad571114db007ae048 (diff) | |
Merge pull request #12099 from Dentomologist/abstractframebuffer_change_member_declaration_order
AbstractFramebuffer: Fix Android reorder-ctor warning
Diffstat (limited to 'Source/Core/VideoCommon/AbstractFramebuffer.h')
| -rw-r--r-- | Source/Core/VideoCommon/AbstractFramebuffer.h | 2 |
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; |
