diff options
author | Michel Dänzer <[email protected]> | 2009-09-25 20:38:49 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2009-09-25 20:38:49 +0200 |
commit | b0ddfe8a3dc3dfee87dd382a4aa7cbd03a395f37 (patch) | |
tree | 568e444a8670c45eb09bd8c93be67a98160b72d1 | |
parent | ac2e0ddcd8f33505aee20e94dd64a804812f07fb (diff) |
st/xorg: Use generic semantic for Composite mask coordinates.
-rw-r--r-- | src/gallium/state_trackers/xorg/xorg_exa_tgsi.c | 4 |
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 2daa5b5628f..28954dc6f63 100644 --- a/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c +++ b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.c @@ -271,7 +271,7 @@ create_vs(struct pipe_context *pipe, if (has_mask) { src = ureg_DECL_vs_input(ureg, input_slot++); - dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 2); + dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_GENERIC, 2); ureg_MOV(ureg, dst, src); } @@ -330,7 +330,7 @@ create_fs(struct pipe_context *pipe, if (has_mask) { mask_sampler = ureg_DECL_sampler(ureg, 1); mask_pos = ureg_DECL_fs_input(ureg, - TGSI_SEMANTIC_POSITION, + TGSI_SEMANTIC_GENERIC, 1, TGSI_INTERPOLATE_PERSPECTIVE); } |