* Removes the output from the pending list and adds it to the compositor's
* list of enabled outputs. The output created signal is emitted.
*
+ * The output gets an internal ID assigned.
+ *
* \param compositor The compositor instance.
* \param output The output to be added.
*
struct weston_view *view, *next;
assert(!output->enabled);
+
+ /* Verify we haven't reached the limit of 32 available output IDs */
+ assert(ffs(~compositor->output_id_pool) > 0);
+
+ /* Invert the output id pool and look for the lowest numbered
+ * switch (the least significant bit). Take that bit's position
+ * as our ID, and mark it used in the compositor's output_id_pool.
+ */
+ output->id = ffs(~compositor->output_id_pool) - 1;
+ compositor->output_id_pool |= 1u << output->id;
+
wl_list_remove(&output->link);
wl_list_insert(compositor->output_list.prev, &output->link);
output->enabled = true;
* Removes the repaint timer.
* Destroys the Wayland global assigned to the output.
* Destroys pixman regions allocated to the output.
- * Deallocates output's ID and updates compositor's output_id_pool.
*/
static void
weston_output_enable_undo(struct weston_output *output)
pixman_region32_fini(&output->region);
pixman_region32_fini(&output->previous_damage);
- output->compositor->output_id_pool &= ~(1u << output->id);
}
/** Removes output from compositor's list of enabled outputs
* - wl_output protocol objects referencing this weston_output
* are made inert.
*
+ * - The output's internal ID is released.
+ *
* \memberof weston_output
* \internal
*/
wl_resource_for_each(resource, &output->resource_list) {
wl_resource_set_destructor(resource, NULL);
}
+
+ compositor->output_id_pool &= ~(1u << output->id);
+ output->id = 0xffffffff; /* invalid */
}
/** Sets the output scale for a given output.
/* Make sure we have a transform set */
assert(output->transform != UINT32_MAX);
- /* Verify we haven't reached the limit of 32 available output IDs */
- assert(ffs(~c->output_id_pool) > 0);
-
output->x = x;
output->y = y;
output->dirty = 1;
wl_list_init(&output->resource_list);
wl_list_init(&output->feedback_list);
- /* Invert the output id pool and look for the lowest numbered
- * switch (the least significant bit). Take that bit's position
- * as our ID, and mark it used in the compositor's output_id_pool.
- */
- output->id = ffs(~output->compositor->output_id_pool) - 1;
- output->compositor->output_id_pool |= 1u << output->id;
-
output->global =
wl_global_create(c->wl_display, &wl_output_interface, 3,
output, bind_output);