summaryrefslogtreecommitdiff
path: root/render/picturestr.h
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-12-09 18:35:21 +0000
committerAdam Jackson <ajax@nwnk.net>2005-12-09 18:35:21 +0000
commit62f3ef930adc7edd49b27dd1f7b0f51bc8bc0afa (patch)
tree5d30494c873a9f878012ffc00ec717111e0ea223 /render/picturestr.h
parentb99dea9dcf99f907a3536c0db1c39cc67931a5b1 (diff)
Bug #5258: Restore binary compatibility with 6.8.2's PictureRec. (Aaron
Plattner)
Diffstat (limited to 'render/picturestr.h')
-rw-r--r--render/picturestr.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/render/picturestr.h b/render/picturestr.h
index 58b840c6d..ab6785c33 100644
--- a/render/picturestr.h
+++ b/render/picturestr.h
@@ -134,7 +134,7 @@ typedef struct _Picture {
CARD32 id;
PicturePtr pNext; /* chain on same drawable */
- unsigned int repeat : 2;
+ unsigned int repeat : 1;
unsigned int graphicsExposures : 1;
unsigned int subWindowMode : 1;
unsigned int polyEdge : 1;
@@ -142,7 +142,8 @@ typedef struct _Picture {
unsigned int freeCompClip : 1;
unsigned int clientClipType : 2;
unsigned int componentAlpha : 1;
- unsigned int unused : 22;
+ unsigned int repeatType : 2;
+ unsigned int unused : 21;
PicturePtr alphaMap;
DDXPointRec alphaOrigin;