input-capture: Fix off-by-one for barrier validation

Assuming two 1920x1080 screens next to each other: a horizontal barrier
starting at 1920 going east is always outside the left screen.

Assuming two 1920x1080 screens on top of each other: a vertical barrier
starting at 1080 going south is always outside the top screen.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3319>
This commit is contained in:
Peter Hutterer 2023-10-10 14:37:27 +10:00 committed by Marge Bot
parent 909cc6c240
commit b7078ddab7
2 changed files with 13 additions and 9 deletions

View File

@ -640,7 +640,7 @@ get_barrier_adjacency (MtkRectangle *rect,
return LINE_ADJACENCY_NONE; return LINE_ADJACENCY_NONE;
if (y_max < rect->y || if (y_max < rect->y ||
y_min > rect->y + rect->height) y_min >= rect->y + rect->height)
return LINE_ADJACENCY_NONE; return LINE_ADJACENCY_NONE;
if (rect->x + rect->width == x || rect->x == x) if (rect->x + rect->width == x || rect->x == x)
@ -664,7 +664,7 @@ get_barrier_adjacency (MtkRectangle *rect,
return LINE_ADJACENCY_NONE; return LINE_ADJACENCY_NONE;
if (x_max < rect->x || if (x_max < rect->x ||
x_min > rect->x + rect->width) x_min >= rect->x + rect->width)
return LINE_ADJACENCY_NONE; return LINE_ADJACENCY_NONE;
if (rect->y + rect->height == y || rect->y == y) if (rect->y + rect->height == y || rect->y == y)

View File

@ -683,7 +683,7 @@ test_barriers (void)
InputCapture *input_capture; InputCapture *input_capture;
InputCaptureSession *session; InputCaptureSession *session;
g_autolist (Zone) zones = NULL; g_autolist (Zone) zones = NULL;
unsigned int barrier1, barrier2; unsigned int barrier1, barrier2, barrier3;
BarriersTestData data = {}; BarriersTestData data = {};
unsigned int prev_activated_serial; unsigned int prev_activated_serial;
@ -693,20 +693,24 @@ test_barriers (void)
zones = input_capture_session_get_zones (session); zones = input_capture_session_get_zones (session);
/* /*
* +-------------+--------------+ * +-------------+==============+
* || | | * || | ^ |
* ||<--B#1 | | * ||<--B#1 | | |
* || | B#2 | * || | B#2 B#3 |
* +-------------+ | | * +-------------+ | |
* | V | * | V |
* +==============+ * +==============+
*/ */
barrier1 = input_capture_session_add_barrier (session, 0, 0, 0, 600); barrier1 = input_capture_session_add_barrier (session, 0, 0, 0, 600);
barrier2 = input_capture_session_add_barrier (session, 800, 768, 1824, 768); barrier2 = input_capture_session_add_barrier (session, 800, 768, 1824, 768);
barrier3 = input_capture_session_add_barrier (session, 800, 0, 1824, 0);
g_assert_cmpuint (barrier1, !=, 0); g_assert_cmpuint (barrier1, !=, 0);
g_assert_cmpuint (barrier2, !=, 0); g_assert_cmpuint (barrier2, !=, 0);
g_assert_cmpuint (barrier3, !=, 0);
g_assert_cmpuint (barrier1, !=, barrier2); g_assert_cmpuint (barrier1, !=, barrier2);
g_assert_cmpuint (barrier1, !=, barrier3);
g_assert_cmpuint (barrier2, !=, barrier3);
g_signal_connect (session->proxy, "activated", g_signal_connect (session->proxy, "activated",
G_CALLBACK (on_activated), &data); G_CALLBACK (on_activated), &data);