From 900f532cc2ab377b0107a142d48b277c14935c7e Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 24 Jun 2010 09:13:29 +0200 Subject: qxl abi: add QXLPattern --- spice/qxl_dev.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/spice/qxl_dev.h b/spice/qxl_dev.h index 261000c..4d4325b 100644 --- a/spice/qxl_dev.h +++ b/spice/qxl_dev.h @@ -303,11 +303,16 @@ typedef struct SPICE_ATTR_PACKED QXLCopyBits { #define QXL_EFFECT_NOP 6 #define QXL_EFFECT_OPAQUE_BRUSH 7 +typedef struct SPICE_ATTR_PACKED QXLPattern { + QXLPHYSICAL pat; + SpicePoint pos; +} QXLPattern; + typedef struct SPICE_ATTR_PACKED QXLBrush { uint32_t type; union { uint32_t color; - SpicePattern pattern; + QXLPattern pattern; } u; } QXLBrush; -- cgit