diff options
author | Neil Roberts <neil@linux.intel.com> | 2014-05-06 19:04:15 +0100 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2014-05-06 15:36:55 -0700 |
commit | 6c3b01f81e8e442b8c82efc702797aae629b33d2 (patch) | |
tree | 795872d3cd6b1d1acb8e3512e6da9e77a8be5e5e /src/zoom.c | |
parent | 2ef1cd177e73173d8cd25325ce691a09187134cb (diff) | |
download | weston-6c3b01f81e8e442b8c82efc702797aae629b33d2.tar.gz |
Apply the zoom transformation before the output transformation
The zoom translation is just a scale and a translate. The translation
is calculated based on the coordinates of the pointer which are in
global space. Previously the calculated translation was transformed by
the output transformation so that when the zoom transform is applied
after the output transform then it will be correct. However if we just
apply the zoom transformation first then we get the same result
without the zoom code having to be aware of the output transformation.
This also fixes weston_output_transform_coordinate which was applying
the output and zoom transforms in the wrong order.
https://bugs.freedesktop.org/show_bug.cgi?id=78211
Diffstat (limited to 'src/zoom.c')
-rw-r--r-- | src/zoom.c | 47 |
1 files changed, 0 insertions, 47 deletions
@@ -111,50 +111,6 @@ zoom_area_center_from_pointer(struct weston_output *output, } static void -weston_zoom_apply_output_transform(struct weston_output *output, - float *x, float *y) -{ - float tx, ty; - - switch(output->transform) { - case WL_OUTPUT_TRANSFORM_NORMAL: - default: - return; - case WL_OUTPUT_TRANSFORM_90: - tx = -*y; - ty = *x; - break; - case WL_OUTPUT_TRANSFORM_180: - tx = -*x; - ty = -*y; - break; - case WL_OUTPUT_TRANSFORM_270: - tx = *y; - ty = -*x; - break; - case WL_OUTPUT_TRANSFORM_FLIPPED: - tx = -*x; - ty = *y; - break; - case WL_OUTPUT_TRANSFORM_FLIPPED_90: - tx = -*y; - ty = -*x; - break; - case WL_OUTPUT_TRANSFORM_FLIPPED_180: - tx = *x; - ty = -*y; - break; - case WL_OUTPUT_TRANSFORM_FLIPPED_270: - tx = *y; - ty = *x; - break; - } - - *x = tx; - *y = ty; -} - -static void weston_output_update_zoom_transform(struct weston_output *output) { float global_x, global_y; @@ -183,9 +139,6 @@ weston_output_update_zoom_transform(struct weston_output *output) ((((global_y - output->y) / output->height) * (level * 2)) - level) * ratio; - weston_zoom_apply_output_transform(output, &output->zoom.trans_x, - &output->zoom.trans_y); - trans_max = level * 2 - level; trans_min = -trans_max; |