summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2009-11-11 19:52:08 -0500
committerZack Rusin <zackr@vmware.com>2009-11-11 19:55:50 -0500
commit2cfbbc76e445d88bdac7dd4dd22aaf36bbc8e4cc (patch)
tree3e5160e4fa0fc0c4334d7161771a0e9bbd2299d0 /src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
parent493d599af4f617d52323e0368e65da29ba4638aa (diff)
st/xorg: implement repeatnone and make some code smell less like ass
Diffstat (limited to 'src/gallium/state_trackers/xorg/xorg_exa_tgsi.h')
-rw-r--r--src/gallium/state_trackers/xorg/xorg_exa_tgsi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
index d3bfa304c2..c038dc2231 100644
--- a/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
+++ b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
@@ -25,7 +25,9 @@ enum xorg_fs_traits {
FS_RADGRAD_FILL = 1 << 4,
FS_CA_FULL = 1 << 5, /* src.rgba * mask.rgba */
FS_CA_SRCALPHA = 1 << 6, /* src.aaaa * mask.rgba */
- FS_YUV = 1<< 7,
+ FS_YUV = 1 << 7,
+ FS_SRC_REPEAT_NONE = 1 << 8,
+ FS_MASK_REPEAT_NONE = 1 << 9,
FS_FILL = (FS_SOLID_FILL |
FS_LINGRAD_FILL |