compositor: Make types consistent for bitshifting unsigned ints
This commit is contained in:
+10
-10
@@ -1069,15 +1069,15 @@ weston_surface_update_output_mask(struct weston_surface *es, uint32_t mask)
|
|||||||
client = wl_resource_get_client(es->resource);
|
client = wl_resource_get_client(es->resource);
|
||||||
|
|
||||||
wl_list_for_each(output, &es->compositor->output_list, link) {
|
wl_list_for_each(output, &es->compositor->output_list, link) {
|
||||||
if (1 << output->id & different)
|
if (1u << output->id & different)
|
||||||
resource =
|
resource =
|
||||||
wl_resource_find_for_client(&output->resource_list,
|
wl_resource_find_for_client(&output->resource_list,
|
||||||
client);
|
client);
|
||||||
if (resource == NULL)
|
if (resource == NULL)
|
||||||
continue;
|
continue;
|
||||||
if (1 << output->id & entered)
|
if (1u << output->id & entered)
|
||||||
wl_surface_send_enter(es->resource, resource);
|
wl_surface_send_enter(es->resource, resource);
|
||||||
if (1 << output->id & left)
|
if (1u << output->id & left)
|
||||||
wl_surface_send_leave(es->resource, resource);
|
wl_surface_send_leave(es->resource, resource);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1166,7 +1166,7 @@ weston_view_assign_output(struct weston_view *ev)
|
|||||||
area = (e->x2 - e->x1) * (e->y2 - e->y1);
|
area = (e->x2 - e->x1) * (e->y2 - e->y1);
|
||||||
|
|
||||||
if (area > 0)
|
if (area > 0)
|
||||||
mask |= 1 << output->id;
|
mask |= 1u << output->id;
|
||||||
|
|
||||||
if (area >= max) {
|
if (area >= max) {
|
||||||
new_output = output;
|
new_output = output;
|
||||||
@@ -1503,7 +1503,7 @@ weston_surface_schedule_repaint(struct weston_surface *surface)
|
|||||||
struct weston_output *output;
|
struct weston_output *output;
|
||||||
|
|
||||||
wl_list_for_each(output, &surface->compositor->output_list, link)
|
wl_list_for_each(output, &surface->compositor->output_list, link)
|
||||||
if (surface->output_mask & (1 << output->id))
|
if (surface->output_mask & (1u << output->id))
|
||||||
weston_output_schedule_repaint(output);
|
weston_output_schedule_repaint(output);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1519,7 +1519,7 @@ weston_view_schedule_repaint(struct weston_view *view)
|
|||||||
struct weston_output *output;
|
struct weston_output *output;
|
||||||
|
|
||||||
wl_list_for_each(output, &view->surface->compositor->output_list, link)
|
wl_list_for_each(output, &view->surface->compositor->output_list, link)
|
||||||
if (view->output_mask & (1 << output->id))
|
if (view->output_mask & (1u << output->id))
|
||||||
weston_output_schedule_repaint(output);
|
weston_output_schedule_repaint(output);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3307,7 +3307,7 @@ subsurface_configure(struct weston_surface *surface, int32_t dx, int32_t dy)
|
|||||||
struct weston_output, link);
|
struct weston_output, link);
|
||||||
|
|
||||||
surface->output = output;
|
surface->output = output;
|
||||||
weston_surface_update_output_mask(surface, 1 << output->id);
|
weston_surface_update_output_mask(surface, 1u << output->id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4108,7 +4108,7 @@ weston_output_destroy(struct weston_output *output)
|
|||||||
output->destroying = 1;
|
output->destroying = 1;
|
||||||
|
|
||||||
wl_list_for_each(view, &output->compositor->view_list, link) {
|
wl_list_for_each(view, &output->compositor->view_list, link) {
|
||||||
if (view->output_mask & (1 << output->id))
|
if (view->output_mask & (1u << output->id))
|
||||||
weston_view_assign_output(view);
|
weston_view_assign_output(view);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4125,7 +4125,7 @@ weston_output_destroy(struct weston_output *output)
|
|||||||
free(output->name);
|
free(output->name);
|
||||||
pixman_region32_fini(&output->region);
|
pixman_region32_fini(&output->region);
|
||||||
pixman_region32_fini(&output->previous_damage);
|
pixman_region32_fini(&output->previous_damage);
|
||||||
output->compositor->output_id_pool &= ~(1 << output->id);
|
output->compositor->output_id_pool &= ~(1u << output->id);
|
||||||
|
|
||||||
wl_resource_for_each(resource, &output->resource_list) {
|
wl_resource_for_each(resource, &output->resource_list) {
|
||||||
wl_resource_set_destructor(resource, NULL);
|
wl_resource_set_destructor(resource, NULL);
|
||||||
@@ -4336,7 +4336,7 @@ weston_output_init(struct weston_output *output, struct weston_compositor *c,
|
|||||||
* as our ID, and mark it used in the compositor's output_id_pool.
|
* as our ID, and mark it used in the compositor's output_id_pool.
|
||||||
*/
|
*/
|
||||||
output->id = ffs(~output->compositor->output_id_pool) - 1;
|
output->id = ffs(~output->compositor->output_id_pool) - 1;
|
||||||
output->compositor->output_id_pool |= 1 << output->id;
|
output->compositor->output_id_pool |= 1u << output->id;
|
||||||
|
|
||||||
output->global =
|
output->global =
|
||||||
wl_global_create(c->wl_display, &wl_output_interface, 2,
|
wl_global_create(c->wl_display, &wl_output_interface, 2,
|
||||||
|
|||||||
Reference in New Issue
Block a user