diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-09-12 14:12:35 -0700 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-09-12 14:12:35 -0700 |
commit | 6d8dbd3d1ec888300fb0e9ac3cf61808ba8ecc2b (patch) | |
tree | 2315782d66a87f9449f8e9bd5be2e8b35d61105e /src/gallium/auxiliary/util | |
parent | 149945c432115ef27788216063dd453624caa9e9 (diff) |
tgsi/ureg: VS inputs don't have any semantic tags, just an index
Fix ureg_DECL_vs_input to reflect this and fix up all callers.
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_simple_shaders.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/util/u_simple_shaders.c b/src/gallium/auxiliary/util/u_simple_shaders.c index e5fc9b0cee..0d706f9449 100644 --- a/src/gallium/auxiliary/util/u_simple_shaders.c +++ b/src/gallium/auxiliary/util/u_simple_shaders.c @@ -61,9 +61,7 @@ util_make_vertex_passthrough_shader(struct pipe_context *pipe, struct ureg_src src; struct ureg_dst dst; - src = ureg_DECL_vs_input( ureg, - semantic_names[i], - semantic_indexes[i]); + src = ureg_DECL_vs_input( ureg, i ); dst = ureg_DECL_output( ureg, semantic_names[i], |