summaryrefslogtreecommitdiffstats
path: root/src/wayland.cpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-07-03 11:05:38 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commitd2ad02c40bad6b67f0b38071987ce1fa9f8039ab (patch)
tree95df825ebb70cdabaf73a9fb767b168711875047 /src/wayland.cpp
parent9753260ef3e5bad3fc600987dbf9d82af259a4ea (diff)
clang-tidy the place up
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.cpp')
-rw-r--r--src/wayland.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wayland.cpp b/src/wayland.cpp
index d3b82f0..8b44852 100644
--- a/src/wayland.cpp
+++ b/src/wayland.cpp
@@ -423,7 +423,7 @@ void controller::layer_orientation(struct layer *l, int32_t orientation) {
l->orientation = orientation;
}
-void controller::layer_screen(struct layer *l, struct wl_output *screen) {
+void controller::layer_screen(struct layer * /*l*/, struct wl_output *screen) {
logdebug("genivi::layer %s @ %p s %p", __func__, this->proxy.get(), screen);
}
@@ -635,18 +635,19 @@ void controller::surface_orientation(struct surface *s, int32_t orientation) {
s->orientation = orientation;
}
-void controller::surface_pixelformat(struct surface *s, int32_t pixelformat) {
+void controller::surface_pixelformat(struct surface * /*s*/,
+ int32_t pixelformat) {
logdebug("genivi::surface %s @ %p f %i", __func__, this->proxy.get(),
pixelformat);
}
-void controller::surface_layer(struct surface *s,
+void controller::surface_layer(struct surface * /*s*/,
struct ivi_controller_layer *layer) {
logdebug("genivi::surface %s @ %p l %u @ %p", __func__, this->proxy.get(),
this->layer_proxy_to_id[uintptr_t(layer)], layer);
}
-void controller::surface_stats(struct surface *s, uint32_t redraw_count,
+void controller::surface_stats(struct surface * /*s*/, uint32_t redraw_count,
uint32_t frame_count, uint32_t update_count,
uint32_t pid, const char *process_name) {
logdebug("genivi::surface %s @ %p r %u f %u u %u pid %u p %s", __func__,