summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar bunnei2020-02-17 14:31:14 -0500
committerGravatar bunnei2020-02-25 21:22:59 -0500
commitdc672ca4b39c1ab9c2ee81257b6fb605a23cbcd8 (patch)
tree15415ab06bdba99ca408dad1c526c31313c3e8af /src/core
parentrenderer_opengl: Add OGLRenderbuffer to resource/state management. (diff)
downloadyuzu-dc672ca4b39c1ab9c2ee81257b6fb605a23cbcd8.tar.gz
yuzu-dc672ca4b39c1ab9c2ee81257b6fb605a23cbcd8.tar.xz
yuzu-dc672ca4b39c1ab9c2ee81257b6fb605a23cbcd8.zip
renderer_opengl: Add texture mailbox support for presenter thread.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/frontend/framebuffer_layout.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/frontend/framebuffer_layout.h b/src/core/frontend/framebuffer_layout.h
index 1d39c1faf..e9d0a40d3 100644
--- a/src/core/frontend/framebuffer_layout.h
+++ b/src/core/frontend/framebuffer_layout.h
@@ -29,6 +29,7 @@ enum class AspectRatio {
29struct FramebufferLayout { 29struct FramebufferLayout {
30 u32 width{ScreenUndocked::Width}; 30 u32 width{ScreenUndocked::Width};
31 u32 height{ScreenUndocked::Height}; 31 u32 height{ScreenUndocked::Height};
32 bool is_srgb{};
32 33
33 Common::Rectangle<u32> screen; 34 Common::Rectangle<u32> screen;
34 35