X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwayland.cpp;h=d3b82f0a866a708ec3f0bf7c30c4e55c67a4e73e;hb=9753260ef3e5bad3fc600987dbf9d82af259a4ea;hp=e7ba1573d16d533407fcd59986009aed7848e865;hpb=e86177d7a54d8c2c0e096fd856e64bb9671267a4;p=staging%2Fwindowmanager.git diff --git a/src/wayland.cpp b/src/wayland.cpp index e7ba157..d3b82f0 100644 --- a/src/wayland.cpp +++ b/src/wayland.cpp @@ -425,7 +425,6 @@ void controller::layer_orientation(struct layer *l, int32_t orientation) { void controller::layer_screen(struct layer *l, struct wl_output *screen) { logdebug("genivi::layer %s @ %p s %p", __func__, this->proxy.get(), screen); - } void controller::layer_destroyed(struct layer *l) { @@ -724,8 +723,8 @@ void controller::debug_dump_current_status() { for (auto const &i : this->surfaces) { auto const &r = i.second->dst_rect; auto const &s = i.second->size; - printf("%d [%ux%u] (%ux%u@%dx%d), ", i.first, s.w, s.h, r.w, r.h, - r.x, r.y); + printf("%d [%ux%u] (%ux%u@%dx%d), ", i.first, s.w, s.h, r.w, r.h, r.x, + r.y); } puts("\b\b "); } @@ -735,8 +734,8 @@ void controller::debug_dump_current_status() { for (auto const &i : this->layers) { auto const &r = i.second->dst_rect; auto const &s = i.second->size; - printf("%d [%ux%u] (%ux%u@%dx%d), ", i.first, s.w, s.h, r.w, r.h, - r.x, r.y); + printf("%d [%ux%u] (%ux%u@%dx%d), ", i.first, s.w, s.h, r.w, r.h, r.x, + r.y); } puts("\b\b "); }