summaryrefslogtreecommitdiff
path: root/weston-ivi-shell
diff options
context:
space:
mode:
authorEmre Ucan <eucan@de.adit-jv.com>2018-02-16 12:41:39 +0100
committerEmre Ucan <eucan@de.adit-jv.com>2018-02-23 15:00:56 +0100
commit69e02d552ff046dd8cca37bd7bc6b155c950e22b (patch)
treed133d09090b7567c090f59954f67482d454f6614 /weston-ivi-shell
parentdb9fe74d0fc15265dc3e9922d47f27cc6fcb7add (diff)
downloadwayland-ivi-extension-69e02d552ff046dd8cca37bd7bc6b155c950e22b.tar.gz
ivi-controller: fix -Wsign-compare warnings
Signed-off-by: Emre Ucan <eucan@de.adit-jv.com>
Diffstat (limited to 'weston-ivi-shell')
-rw-r--r--weston-ivi-shell/src/ivi-controller.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/weston-ivi-shell/src/ivi-controller.c b/weston-ivi-shell/src/ivi-controller.c
index 583aeaf..9bf669d 100644
--- a/weston-ivi-shell/src/ivi-controller.c
+++ b/weston-ivi-shell/src/ivi-controller.c
@@ -858,13 +858,13 @@ set_bkgnd_surface_prop(struct ivishell *shell)
struct weston_surface *w_surface;
struct weston_geometry source_rect = {0};
struct weston_geometry dest_rect = {0};
- uint32_t src_width = 0;
- uint32_t src_height = 0;
- uint32_t dest_width = 0;
- uint32_t dest_height = 0;
+ int32_t src_width = 0;
+ int32_t src_height = 0;
+ int32_t dest_width = 0;
+ int32_t dest_height = 0;
uint32_t count = 0;
- uint32_t x = 0;
- uint32_t y = 0;
+ int32_t x = 0;
+ int32_t y = 0;
view = shell->bkgnd_view;
compositor = shell->compositor;
@@ -1664,7 +1664,7 @@ create_surface(struct ivishell *shell,
surface = lyt->surface_get_weston_surface(layout_surface);
wl_signal_add(&surface->commit_signal, &ivisurf->committed);
- if (shell->bkgnd_surface_id != id_surface) {
+ if (shell->bkgnd_surface_id != (int32_t)id_surface) {
wl_list_insert(&shell->list_surface, &ivisurf->link);
wl_list_for_each(controller, &shell->list_controller, link) {
@@ -1756,7 +1756,7 @@ surface_event_create(struct wl_listener *listener, void *data)
return;
}
- if (shell->bkgnd_surface_id != id_surface)
+ if (shell->bkgnd_surface_id != (int32_t)id_surface)
wl_signal_emit(&shell->ivisurface_created_signal, ivisurf);
}
@@ -1792,7 +1792,7 @@ surface_event_remove(struct wl_listener *listener, void *data)
id_surface = shell->interface->get_id_of_surface(layout_surface);
- if ((shell->bkgnd_surface_id == id_surface) &&
+ if ((shell->bkgnd_surface_id == (int32_t)id_surface) &&
shell->bkgnd_view) {
weston_layer_entry_remove(&shell->bkgnd_view->layer_link);
weston_view_destroy(shell->bkgnd_view);
@@ -1818,7 +1818,7 @@ surface_event_configure(struct wl_listener *listener, void *data)
struct weston_surface *w_surface;
surface_id = lyt->get_id_of_surface(layout_surface);
- if (shell->bkgnd_surface_id == surface_id) {
+ if (shell->bkgnd_surface_id == (int32_t)surface_id) {
float red, green, blue, alpha;
w_surface = lyt->surface_get_weston_surface(layout_surface);
@@ -1878,7 +1878,7 @@ check_layout_layers(struct ivishell *shell)
const struct ivi_layout_interface *lyt = shell->interface;
uint32_t id_layer = 0;
int32_t length = 0;
- uint32_t i = 0;
+ int32_t i = 0;
int32_t ret = 0;
ret = lyt->get_layers(&length, &pArray);
@@ -1914,7 +1914,7 @@ check_layout_surfaces(struct ivishell *shell)
const struct ivi_layout_interface *lyt = shell->interface;
uint32_t id_surface = 0;
int32_t length = 0;
- uint32_t i = 0;
+ int32_t i = 0;
int32_t ret = 0;
ret = lyt->get_surfaces(&length, &pArray);