summaryrefslogtreecommitdiffstats
path: root/src/wayland.cpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-07-03 11:04:56 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit9753260ef3e5bad3fc600987dbf9d82af259a4ea (patch)
treee0670f9ad7eb2afc57ebb1f93b7454faf74e9f2c /src/wayland.cpp
parente86177d7a54d8c2c0e096fd856e64bb9671267a4 (diff)
all: clang-format
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.cpp')
-rw-r--r--src/wayland.cpp9
1 files changed, 4 insertions, 5 deletions
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 ");
}