summaryrefslogtreecommitdiffstats
path: root/src/wayland.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wayland.cpp')
-rw-r--r--src/wayland.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wayland.cpp b/src/wayland.cpp
index 52b2371..a512979 100644
--- a/src/wayland.cpp
+++ b/src/wayland.cpp
@@ -194,7 +194,12 @@ constexpr struct ivi_controller_listener listener = {
controller::controller(struct wl_registry *r, uint32_t name, uint32_t version)
: wayland_proxy(
- wl_registry_bind(r, name, &ivi_controller_interface, version)) {
+ wl_registry_bind(r, name, &ivi_controller_interface, version))
+ , surfaces{}
+ , layers{}
+ , screens{}
+ , pending{}
+ , output_size{} {
ivi_controller_add_listener(this->proxy, &listener, this);
}