We add a transform field to weston_output and backends can override it
when they create the output.
output->mm_height,
output->subpixel,
output->make, output->model,
- WL_OUTPUT_TRANSFORM_NORMAL);
+ output->transform);
wl_list_for_each (mode, &output->mode_list, link) {
wl_output_send_mode(resource,
output->mm_width = width;
output->mm_height = height;
output->dirty = 1;
+ output->transform = WL_OUTPUT_TRANSFORM_NORMAL;
weston_output_init_zoom(output);
char *make, *model;
uint32_t subpixel;
+ uint32_t transform;
struct weston_mode *current;
struct weston_mode *origin;