summaryrefslogtreecommitdiffstats
path: root/src/compositor/wayland_wrapper/qwlclientbuffer_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/compositor/wayland_wrapper/qwlclientbuffer_p.h')
-rw-r--r--src/compositor/wayland_wrapper/qwlclientbuffer_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compositor/wayland_wrapper/qwlclientbuffer_p.h b/src/compositor/wayland_wrapper/qwlclientbuffer_p.h
index 5a66a67a7..5f3475ed7 100644
--- a/src/compositor/wayland_wrapper/qwlclientbuffer_p.h
+++ b/src/compositor/wayland_wrapper/qwlclientbuffer_p.h
@@ -114,11 +114,11 @@ protected:
struct ::wl_resource *m_buffer;
QRegion m_damage;
- bool m_textureDirty;
+ bool m_textureDirty = false;
private:
- bool m_committed;
- bool m_destroyed;
+ bool m_committed = false;
+ bool m_destroyed = false;
QAtomicInt m_refCount;
@@ -139,7 +139,7 @@ public:
QOpenGLTexture *toOpenGlTexture(int plane = 0) override;
private:
- QOpenGLTexture *m_shmTexture;
+ QOpenGLTexture *m_shmTexture = nullptr;
#endif
};