diff options
author | Brian <[email protected]> | 2008-02-26 10:47:42 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-26 10:47:42 -0700 |
commit | 4901410293b35ac6bb4759142b50fcc0be8a1b25 (patch) | |
tree | 163678cd0855d51ec106a694296bdb0546e4eb62 /src/gallium/drivers/i915simple/i915_fpc.h | |
parent | 33d213b6776701ec16b5c02b111ed31de5e93f43 (diff) |
gallium/i915: Use tgsi_scan_shader() to collect shader info
No longer use semantic info in pipe_shader_state.
Also, remove redundant semantic info from i915_fp_compile struct.
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_fpc.h')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_fpc.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/i915simple/i915_fpc.h b/src/gallium/drivers/i915simple/i915_fpc.h index 250dfe6dbf0..80a9576304c 100644 --- a/src/gallium/drivers/i915simple/i915_fpc.h +++ b/src/gallium/drivers/i915simple/i915_fpc.h @@ -58,12 +58,6 @@ struct i915_fp_compile { uint declarations[I915_PROGRAM_SIZE]; uint program[I915_PROGRAM_SIZE]; - uint input_semantic_name[PIPE_MAX_SHADER_INPUTS]; - uint input_semantic_index[PIPE_MAX_SHADER_INPUTS]; - - uint output_semantic_name[PIPE_MAX_SHADER_OUTPUTS]; - uint output_semantic_index[PIPE_MAX_SHADER_OUTPUTS]; - uint *csr; /**< Cursor, points into program. */ uint *decl; /**< Cursor, points into declarations. */ |