diff options
author | Keith Whitwell <[email protected]> | 2009-09-12 14:12:35 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-09-12 14:12:35 -0700 |
commit | 6d8dbd3d1ec888300fb0e9ac3cf61808ba8ecc2b (patch) | |
tree | 2315782d66a87f9449f8e9bd5be2e8b35d61105e /src/gallium/auxiliary/tgsi/tgsi_ureg.h | |
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/tgsi/tgsi_ureg.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.h b/src/gallium/auxiliary/tgsi/tgsi_ureg.h index acbca59040c..3bc1b775030 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.h +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.h @@ -116,8 +116,7 @@ ureg_DECL_fs_input( struct ureg_program *, struct ureg_src ureg_DECL_vs_input( struct ureg_program *, - unsigned semantic_name, - unsigned semantic_index ); + unsigned index ); struct ureg_dst ureg_DECL_output( struct ureg_program *, |