diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2016-02-12 18:51:07 +0100 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2016-02-15 12:29:15 +0000 |
commit | 8091df87b3af2f88c7f58c76bc2c99ff891264b3 (patch) | |
tree | c8f8624ab270852a2caff2f0a8dd449382d981a8 /server/red-parse-qxl.h | |
parent | 4049481882629f9a725a07752f2719ec24bcfb62 (diff) |
red-parse-qxl: Use QXLReleaseInfoExt instead of QXLReleaseInfo
This should allow to avoid moving the group_id separately from the QXL
commands all over the code.
Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'server/red-parse-qxl.h')
-rw-r--r-- | server/red-parse-qxl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/red-parse-qxl.h b/server/red-parse-qxl.h index 6bb0d4ec..b5f95e69 100644 --- a/server/red-parse-qxl.h +++ b/server/red-parse-qxl.h @@ -65,14 +65,14 @@ static inline RedDrawable *red_drawable_ref(RedDrawable *drawable) } typedef struct RedUpdateCmd { - QXLReleaseInfo *release_info; + QXLReleaseInfoExt release_info_ext; SpiceRect area; uint32_t update_id; uint32_t surface_id; } RedUpdateCmd; typedef struct RedMessage { - QXLReleaseInfo *release_info; + QXLReleaseInfoExt release_info_ext; uint8_t *data; } RedMessage; @@ -93,7 +93,7 @@ typedef struct RedSurfaceCreate { } RedSurfaceCreate; typedef struct RedSurfaceCmd { - QXLReleaseInfo *release_info; + QXLReleaseInfoExt release_info_ext; uint32_t surface_id; uint8_t type; uint32_t flags; @@ -103,7 +103,7 @@ typedef struct RedSurfaceCmd { } RedSurfaceCmd; typedef struct RedCursorCmd { - QXLReleaseInfo *release_info; + QXLReleaseInfoExt release_info_ext; uint8_t type; union { struct { |