summaryrefslogtreecommitdiffstats
path: root/src/common/framebuffer_layout.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2016-11-10 08:36:07 +0100
committerJames Rowe <jroweboy@gmail.com>2016-11-12 18:49:47 +0100
commit793339b73a9bc87d6fa22742be4631565c2201db (patch)
tree5177fdef58d7cf99fded0d913072372a425cbe63 /src/common/framebuffer_layout.h
parentAdd default hotkey to swap primary screens. (diff)
downloadyuzu-793339b73a9bc87d6fa22742be4631565c2201db.tar
yuzu-793339b73a9bc87d6fa22742be4631565c2201db.tar.gz
yuzu-793339b73a9bc87d6fa22742be4631565c2201db.tar.bz2
yuzu-793339b73a9bc87d6fa22742be4631565c2201db.tar.lz
yuzu-793339b73a9bc87d6fa22742be4631565c2201db.tar.xz
yuzu-793339b73a9bc87d6fa22742be4631565c2201db.tar.zst
yuzu-793339b73a9bc87d6fa22742be4631565c2201db.zip
Diffstat (limited to 'src/common/framebuffer_layout.h')
-rw-r--r--src/common/framebuffer_layout.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/framebuffer_layout.h b/src/common/framebuffer_layout.h
index 7f88c9463..a125646a3 100644
--- a/src/common/framebuffer_layout.h
+++ b/src/common/framebuffer_layout.h
@@ -20,14 +20,16 @@ struct FramebufferLayout {
* Factory method for constructing a default FramebufferLayout
* @param width Window framebuffer width in pixels
* @param height Window framebuffer height in pixels
+ * @param is_swapped if true, the bottom screen will be displayed above the top screen
* @return Newly created FramebufferLayout object with default screen regions initialized
*/
FramebufferLayout DefaultFrameLayout(unsigned width, unsigned height, bool is_swapped);
/**
- * Factory method for constructing a FramebufferLayout with only the top screen
+ * Factory method for constructing a FramebufferLayout with only the top or bottom screen
* @param width Window framebuffer width in pixels
* @param height Window framebuffer height in pixels
+ * @param is_swapped if true, the bottom screen will be displayed (and the top won't be displayed)
* @return Newly created FramebufferLayout object with default screen regions initialized
*/
FramebufferLayout SingleFrameLayout(unsigned width, unsigned height, bool is_swapped);
@@ -38,7 +40,8 @@ FramebufferLayout SingleFrameLayout(unsigned width, unsigned height, bool is_swa
* This is useful in particular because it matches well with a 1920x1080 resolution monitor
* @param width Window framebuffer width in pixels
* @param height Window framebuffer height in pixels
+ * @param is_swapped if true, the bottom screen will be the large display
* @return Newly created FramebufferLayout object with default screen regions initialized
*/
FramebufferLayout LargeFrameLayout(unsigned width, unsigned height, bool is_swapped);
-} \ No newline at end of file
+}