X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fwayland.cpp;h=4678661c3e2f2f004c237428a178b0c8ddbf70c3;hb=5a905147d566e62ceafd8f885143a49e2866947e;hp=71dca0f84315ab05cafad548ab92c42d795425dc;hpb=ac5350e948b0ac44fd8055f5c88d8e4dc85435bb;p=staging%2Fwindowmanager.git diff --git a/src/wayland.cpp b/src/wayland.cpp index 71dca0f..4678661 100644 --- a/src/wayland.cpp +++ b/src/wayland.cpp @@ -732,4 +732,19 @@ screen::screen(uint32_t i, struct controller *c, : wayland_proxy(p), controller_child(c, i) { logdebug("genivi::screen @ %p id %u", p, i); } + +void screen::clear() { ivi_controller_screen_clear(this->proxy); } + +void screen::add_layer(layer *l) { + ivi_controller_screen_add_layer(this->proxy, l->proxy); +} + +void screen::set_render_order(std::vector const &ro) { + struct wl_array wlro { + .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]), + .data = const_cast(static_cast(ro.data())) + }; + ivi_controller_screen_set_render_order(this->proxy, &wlro); +} + } // namespace genivi