vi: Implement GetDisplayResolution.

This commit is contained in:
bunnei
2018-04-02 23:28:45 -04:00
parent 99ae9dbf49
commit 9d08a11c1d
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> {