2018-01-13 13:22:39 -08:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2016-05-02 23:07:17 -07:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/math_util.h"
|
2017-05-27 18:06:59 -07:00
|
|
|
|
2016-05-02 23:07:17 -07:00
|
|
|
namespace Layout {
|
2017-05-27 18:06:59 -07:00
|
|
|
|
2019-05-28 23:14:24 -07:00
|
|
|
enum ScreenUndocked : u32 {
|
|
|
|
Width = 1280,
|
|
|
|
Height = 720,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ScreenDocked : u32 {
|
|
|
|
WidthDocked = 1920,
|
|
|
|
HeightDocked = 1080,
|
|
|
|
};
|
2018-01-09 19:36:07 -08:00
|
|
|
|
2020-02-13 20:13:23 -08:00
|
|
|
enum class Aspect {
|
|
|
|
AspectDefault,
|
|
|
|
Aspect21by9,
|
|
|
|
AspectStretch,
|
|
|
|
};
|
|
|
|
|
2018-01-09 19:36:07 -08:00
|
|
|
/// Describes the layout of the window framebuffer
|
2016-05-02 23:07:17 -07:00
|
|
|
struct FramebufferLayout {
|
2019-05-28 23:14:24 -07:00
|
|
|
u32 width{ScreenUndocked::Width};
|
|
|
|
u32 height{ScreenUndocked::Height};
|
2018-01-09 19:36:07 -08:00
|
|
|
|
2019-05-28 23:14:24 -07:00
|
|
|
Common::Rectangle<u32> screen;
|
2017-05-27 18:06:59 -07:00
|
|
|
|
|
|
|
/**
|
2018-01-09 19:36:07 -08:00
|
|
|
* Returns the ration of pixel size of the screen, compared to the native size of the undocked
|
|
|
|
* Switch screen.
|
2017-05-27 18:06:59 -07:00
|
|
|
*/
|
2018-01-09 19:36:07 -08:00
|
|
|
float GetScalingRatio() const {
|
|
|
|
return static_cast<float>(screen.GetWidth()) / ScreenUndocked::Width;
|
|
|
|
}
|
2016-05-02 23:07:17 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory method for constructing a default FramebufferLayout
|
|
|
|
* @param width Window framebuffer width in pixels
|
|
|
|
* @param height Window framebuffer height in pixels
|
2017-02-01 00:22:47 -08:00
|
|
|
* @return Newly created FramebufferLayout object with default screen regions initialized
|
|
|
|
*/
|
2019-05-28 23:14:24 -07:00
|
|
|
FramebufferLayout DefaultFrameLayout(u32 width, u32 height);
|
2017-05-27 18:06:59 -07:00
|
|
|
|
2018-08-30 23:16:16 -07:00
|
|
|
/**
|
|
|
|
* Convenience method to get frame layout by resolution scale
|
|
|
|
* @param res_scale resolution scale factor
|
|
|
|
*/
|
2019-05-28 23:14:24 -07:00
|
|
|
FramebufferLayout FrameLayoutFromResolutionScale(u32 res_scale);
|
2018-08-30 23:16:16 -07:00
|
|
|
|
2017-05-27 18:06:59 -07:00
|
|
|
} // namespace Layout
|