summaryrefslogtreecommitdiff
path: root/pixman
diff options
context:
space:
mode:
authorBilly Biggs <vektor@dumbterm.net>2005-10-09 14:29:54 +0000
committerBilly Biggs <vektor@dumbterm.net>2005-10-09 14:29:54 +0000
commitbb86d6664d607cb4f6b88618209d1c5dc74683ba (patch)
tree7ae0677ce1f32f2edc98dc0dc282c8c24bac608a /pixman
parenteeb56e713b26e55cf1a5704d1e09b65457a7c457 (diff)
Make space for the new bits needed by expand.
Diffstat (limited to 'pixman')
-rw-r--r--pixman/ChangeLog4
-rw-r--r--pixman/src/icimage.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/pixman/ChangeLog b/pixman/ChangeLog
index a14b063b2..afa782ec5 100644
--- a/pixman/ChangeLog
+++ b/pixman/ChangeLog
@@ -1,5 +1,9 @@
2005-10-09 Billy Biggs <vektor@dumbterm.net>
+ * src/icimage.h: Make space for the new bits needed by expand.
+
+2005-10-09 Billy Biggs <vektor@dumbterm.net>
+
reviewed by: davidr, cworth, otaylor
* src/pixman.h: Add extended repeat modes, copied from XRender.
diff --git a/pixman/src/icimage.h b/pixman/src/icimage.h
index b3e012f9d..f80dd0f48 100644
--- a/pixman/src/icimage.h
+++ b/pixman/src/icimage.h
@@ -60,7 +60,7 @@ struct pixman_image {
int format_code;
int refcnt;
- unsigned int repeat : 1;
+ unsigned int repeat : 2;
unsigned int graphicsExposures : 1;
unsigned int subWindowMode : 1;
unsigned int polyEdge : 1;
@@ -70,7 +70,7 @@ struct pixman_image {
unsigned int clientClipType : 2;
unsigned int componentAlpha : 1;
unsigned int compositeClipSource : 1;
- unsigned int unused : 21;
+ unsigned int unused : 20;
struct pixman_image *alphaMap;
FbPoint alphaOrigin;