summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2009-09-09 11:33:33 -0400
committerZack Rusin <zackr@vmware.com>2009-09-10 17:21:06 -0400
commit6be1a98ab9d64584c3852b97e2f1d63697f7bf76 (patch)
treee03ae17bf95a2a6de64cb1eebc746496b805ca6f /src/gallium/state_trackers/xorg/xorg_exa_tgsi.c
parent3167c2e8a0a248c290ae8bfff23c88db8f39cd11 (diff)
st/xorg: implement exasolids with full pipelining
plus fix some small issues with the shaders
Diffstat (limited to 'src/gallium/state_trackers/xorg/xorg_exa_tgsi.c')
-rw-r--r--src/gallium/state_trackers/xorg/xorg_exa_tgsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c
index 14d5605f39..2d2c2e884b 100644
--- a/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c
+++ b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c
@@ -268,8 +268,8 @@ create_vs(struct pipe_context *pipe,
}
if (is_fill) {
src = ureg_DECL_vs_input(ureg,
- TGSI_SEMANTIC_COLOR, 1);
- dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 1);
+ TGSI_SEMANTIC_COLOR, 0);
+ dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
ureg_MOV(ureg, dst, src);
}