diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-04 22:50:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 22:50:12 +0200 |
commit | 20bd26dc7d322cc6409c9e09ee6c8908658d3bbd (patch) | |
tree | c7a28e58e2b7cba62faa6e6989dc240f28f021c9 /src/core/hle/service/vi/vi.h | |
parent | Merge pull request #306 from daniellimws/new-fmt-macros (diff) | |
parent | svc: Stub out SetThreadActivity, GetThreadContext. (diff) | |
download | yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.tar yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.tar.gz yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.tar.bz2 yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.tar.lz yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.tar.xz yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.tar.zst yuzu-20bd26dc7d322cc6409c9e09ee6c8908658d3bbd.zip |
Diffstat (limited to 'src/core/hle/service/vi/vi.h')
-rw-r--r-- | src/core/hle/service/vi/vi.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.h b/src/core/hle/service/vi/vi.h index 985c9d27c..7f16fad8e 100644 --- a/src/core/hle/service/vi/vi.h +++ b/src/core/hle/service/vi/vi.h @@ -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> { |