diff options
author | Keith Packard <keithp@keithp.com> | 2010-12-05 20:55:46 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-12-06 20:08:58 -0800 |
commit | a88d70fb20a2bc3152b84adff4380857e6cfadf5 (patch) | |
tree | 0451c44070ae0d6d3ba3b194d26aca609dba27e5 /randr/randrstr.h | |
parent | 96b4d4787bf82edd9d06eb9a6e94bc45412c7df2 (diff) |
Set sprite transforms from RRSetCrtcConfigs
These were getting ignored.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
Diffstat (limited to 'randr/randrstr.h')
-rw-r--r-- | randr/randrstr.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/randr/randrstr.h b/randr/randrstr.h index c23197219..8240824db 100644 --- a/randr/randrstr.h +++ b/randr/randrstr.h @@ -154,8 +154,10 @@ struct _rrCrtcConfig { Rotation rotation; int numOutputs; RROutputPtr *outputs; - struct pict_f_transform sprite_position_transform; - struct pict_f_transform sprite_image_transform; + PictTransform sprite_position_transform; + PictTransform sprite_image_transform; + struct pict_f_transform sprite_position_f_transform; + struct pict_f_transform sprite_image_f_transform; PixmapPtr pixmap; int pixmap_x, pixmap_y; }; |