mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
tests: Make all alarm filters use the same type
That'll make them more interchangable, would so ever be needed. https://bugzilla.gnome.org/show_bug.cgi?id=790207
This commit is contained in:
parent
18c1d9672a
commit
76760bfd79
@ -50,12 +50,12 @@ test_case_alarm_filter (MetaX11Display *x11_display,
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
|
||||
if (async_waiter_alarm_filter (test->waiter, x11_display, event))
|
||||
if (async_waiter_alarm_filter (x11_display, event, test->waiter))
|
||||
return TRUE;
|
||||
|
||||
g_hash_table_iter_init (&iter, test->clients);
|
||||
while (g_hash_table_iter_next (&iter, &key, &value))
|
||||
if (test_client_alarm_filter (value, x11_display, event))
|
||||
if (test_client_alarm_filter (x11_display, event, value))
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
|
@ -185,10 +185,12 @@ async_waiter_set_and_wait (AsyncWaiter *waiter)
|
||||
}
|
||||
|
||||
gboolean
|
||||
async_waiter_alarm_filter (AsyncWaiter *waiter,
|
||||
MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event)
|
||||
async_waiter_alarm_filter (MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event,
|
||||
gpointer data)
|
||||
{
|
||||
AsyncWaiter *waiter = data;
|
||||
|
||||
if (event->alarm != waiter->alarm)
|
||||
return FALSE;
|
||||
|
||||
@ -358,12 +360,14 @@ test_client_find_window (TestClient *client,
|
||||
}
|
||||
|
||||
gboolean
|
||||
test_client_alarm_filter (TestClient *client,
|
||||
MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event)
|
||||
test_client_alarm_filter (MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event,
|
||||
gpointer data)
|
||||
{
|
||||
TestClient *client = data;
|
||||
|
||||
if (client->waiter)
|
||||
return async_waiter_alarm_filter (client->waiter, x11_display, event);
|
||||
return async_waiter_alarm_filter (x11_display, event, client->waiter);
|
||||
else
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -43,9 +43,9 @@ typedef struct _TestClient TestClient;
|
||||
void test_init (int *argc,
|
||||
char ***argv);
|
||||
|
||||
gboolean async_waiter_alarm_filter (AsyncWaiter *waiter,
|
||||
MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event);
|
||||
gboolean async_waiter_alarm_filter (MetaX11Display *display,
|
||||
XSyncAlarmNotifyEvent *event,
|
||||
gpointer data);
|
||||
|
||||
void async_waiter_set_and_wait (AsyncWaiter *waiter);
|
||||
|
||||
@ -55,9 +55,9 @@ void async_waiter_destroy (AsyncWaiter *waiter);
|
||||
|
||||
char * test_client_get_id (TestClient *client);
|
||||
|
||||
gboolean test_client_alarm_filter (TestClient *client,
|
||||
MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event);
|
||||
gboolean test_client_alarm_filter (MetaX11Display *x11_display,
|
||||
XSyncAlarmNotifyEvent *event,
|
||||
gpointer data);
|
||||
|
||||
gboolean test_client_wait (TestClient *client,
|
||||
GError **error);
|
||||
|
Loading…
Reference in New Issue
Block a user