diff options
| author | Dave Airlie <airlied@redhat.com> | 2019-04-12 16:47:29 +1000 |
|---|---|---|
| committer | jeremyk-lunarg <jeremyk@lunarg.com> | 2019-04-23 13:19:30 -0600 |
| commit | a44171870bfed06fef13920910b2fb1064369dfa (patch) | |
| tree | bd2db3e23f20fa0df1d9f7268bdbdcf4b9adf697 /cube/cube.cpp | |
| parent | 1788411b02e48876f26fc7fe7242797342e96a6a (diff) | |
| download | usermoji-a44171870bfed06fef13920910b2fb1064369dfa.tar.xz | |
cube.cpp: fix uninit non-static member.
This was pointed out by coverity.
Diffstat (limited to 'cube/cube.cpp')
| -rw-r--r-- | cube/cube.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cube/cube.cpp b/cube/cube.cpp index e30c516d..7a6dae1d 100644 --- a/cube/cube.cpp +++ b/cube/cube.cpp @@ -538,6 +538,7 @@ Demo::Demo() width{0}, height{0}, swapchainImageCount{0}, + presentMode{vk::PresentModeKHR::eFifo}, frame_index{0}, spin_angle{0.0f}, spin_increment{0.0f}, |
