vi: Implement GetDisplayResolution.

This commit is contained in:
bunnei 2018-04-02 23:28:45 -04:00
parent 1eeef530e5
commit c800619c1e
2 changed files with 26 additions and 0 deletions

View file

@ -14,6 +14,13 @@ struct EventType;
namespace Service {
namespace VI {
enum class DisplayResolution : u32 {
DockedWidth = 1920,
DockedHeight = 1080,
UndockedWidth = 1280,
UndockedHeight = 720,
};
class Module final {
public:
class Interface : public ServiceFramework<Interface> {