summaryrefslogtreecommitdiff
path: root/server/display-channel.c
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2016-03-14 18:10:31 +0100
committerFrediano Ziglio <fziglio@redhat.com>2016-03-17 16:26:33 +0000
commite45ab9cf230f127d93dd3a24780cea676f43aa9c (patch)
treeb771a3602a789209802c1caf22685fe4b42341ce /server/display-channel.c
parent768ec149dbc35c8fd61f8277021de0537f35e522 (diff)
Use QXLInstance instead of QXLState in red_qxl_*
This seems to make more sense this way, QXLInstance is the 'main' object with QXLState being its private data. External users then use QXLInstance rather than passing a pointer to the private data to red-qxl.h methods. Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'server/display-channel.c')
-rw-r--r--server/display-channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/display-channel.c b/server/display-channel.c
index ff9aeac6..f5f3527d 100644
--- a/server/display-channel.c
+++ b/server/display-channel.c
@@ -2163,7 +2163,7 @@ static void set_gl_draw_async_count(DisplayChannel *display, int num)
display->gl_draw_async_count = num;
if (num == 0) {
- red_qxl_gl_draw_async_complete(qxl->st);
+ red_qxl_gl_draw_async_complete(qxl);
}
}