Home
last modified time | relevance | path

Searched refs:need_rotate (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xwayland/
H A Dxwayland-output.c125 Bool need_rotate, in output_get_new_size() argument
130 if (!need_rotate || (xwl_output->rotation & (RR_Rotate_0 | RR_Rotate_180))) { in output_get_new_size()
219 Bool need_rotate; in apply_output_change() local
226 need_rotate = (xwl_output->xdg_output == NULL); in apply_output_change()
229 if (need_rotate || xwl_output->rotation & (RR_Rotate_0 | RR_Rotate_180)) { in apply_output_change()
252 output_get_new_size(it, need_rotate, &height, &width); in apply_output_change()
259 output_get_new_size(xwl_output, need_rotate, &height, &width); in apply_output_change()
405 Bool need_rotate = (xwl_output->xdg_output == NULL); in xwl_output_remove() local
410 output_get_new_size(it, need_rotate, &height, &width); in xwl_output_remove()
/OK3568_Linux_fs/external/xserver/
H A DChangeLog9864 xwayland: Fix backwards need_rotate logic (v2)
9866 When xdg_output support was added to Xwayland, need_rotate parameter was
9869 where this is called, need_rotate was set backwards. This caused input
9871 whether or not to flip was wrong because, if need_rotate was false, it
9876 need_rotate is false.