diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-10 15:45:57 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-10 15:45:57 -0600 |
commit | d0bca086ab6d032909e9a429720fea297c536f97 (patch) | |
tree | c28e22f04123f66abe74e1fa57e374ef1f4728e1 /src/mesa/pipe/i915simple/i915_fpc.h | |
parent | 9f8cfa75ca0882a8015a714887b41f8a7a10fd19 (diff) |
fix get_result_vector() since fp output slots are not fixed anymore
Diffstat (limited to 'src/mesa/pipe/i915simple/i915_fpc.h')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_fpc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/pipe/i915simple/i915_fpc.h b/src/mesa/pipe/i915simple/i915_fpc.h index 5fdc7ef27e..c25f5abf0e 100644 --- a/src/mesa/pipe/i915simple/i915_fpc.h +++ b/src/mesa/pipe/i915simple/i915_fpc.h @@ -54,6 +54,9 @@ struct i915_fp_compile { 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]; + /** points into the i915->current.constants array: */ float (*constants)[4]; uint num_constants; |