diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-04-01 04:34:45 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-04-01 04:34:45 +0000 |
| commit | 25ff222c58d5370c2c29dddcc3da78c11465b8c1 (patch) | |
| tree | 3ebad659a7d4989a578f87ba20ef234b6f163ad1 /Common/NativeApp/include | |
| parent | One more minor update to readme (diff) | |
| download | DiligentEngine-25ff222c58d5370c2c29dddcc3da78c11465b8c1.tar.gz DiligentEngine-25ff222c58d5370c2c29dddcc3da78c11465b8c1.zip | |
Updated command line format; updated submodules
Diffstat (limited to 'Common/NativeApp/include')
| -rw-r--r-- | Common/NativeApp/include/AppBase.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Common/NativeApp/include/AppBase.h b/Common/NativeApp/include/AppBase.h index e5c4b21..d84a6ff 100644 --- a/Common/NativeApp/include/AppBase.h +++ b/Common/NativeApp/include/AppBase.h @@ -37,6 +37,11 @@ public: virtual void Render() = 0; virtual void Present() = 0; virtual void WindowResize(int width, int height) = 0; + virtual void GetDesiredInitialWindowSize(int& width, int& height) + { + width = 0; + height = 0; + } }; } |
