backends/drm: Make sure attributes are always initialized
It only gets set on specific cases and assumes false as default anyway. kwin/src/backends/drm/drm_gpu.cpp:691:12: runtime error: load of value 190, which is not a valid value for type 'bool'
This commit is contained in:
parent
5f0ea95bfa
commit
a60c3130e3
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ private:
|
|||
bool m_addFB2ModifiersSupported = false;
|
||||
bool m_isNVidia;
|
||||
bool m_isVirtualMachine;
|
||||
bool m_asyncPageflipSupported;
|
||||
bool m_asyncPageflipSupported = false;
|
||||
bool m_isRemoved = false;
|
||||
clockid_t m_presentationClock;
|
||||
gbm_device *m_gbmDevice;
|
||||
|
|
Loading…
Reference in a new issue