diff options
author | Christian König <[email protected]> | 2011-06-09 09:35:09 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-06-09 09:35:09 +0200 |
commit | 003401f95c9b59471c22368b7da16fe7a951e490 (patch) | |
tree | d21fa0197ff27b8a38bd8b1d795b74d816db8b26 /src/gallium/include/pipe | |
parent | 00b4e48560f4d576b7b1924257322f5167e58c8d (diff) | |
parent | d302804debeed13ced27fce222110c629e55d6f9 (diff) |
Merge remote-tracking branch 'origin/master' into pipe-video
Conflicts:
src/gallium/tests/unit/u_format_test.c
src/gallium/winsys/r600/drm/r600_hw_context.c
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 86ef255cd2e..d442c15c02a 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -372,19 +372,21 @@ struct pipe_resource unsigned flags; /**< bitmask of PIPE_RESOURCE_FLAG_x */ }; + +/** + * Stream output for vertex transform feedback. + */ struct pipe_stream_output_state { - /**< number of the output buffer to insert each element into */ + /** number of the output buffer to insert each element into */ int output_buffer[PIPE_MAX_SHADER_OUTPUTS]; - /**< which register to grab each output from */ + /** which register to grab each output from */ int register_index[PIPE_MAX_SHADER_OUTPUTS]; - /**< TGSI_WRITEMASK signifying which components to output */ + /** TGSI_WRITEMASK signifying which components to output */ ubyte register_mask[PIPE_MAX_SHADER_OUTPUTS]; - /**< number of outputs */ + /** number of outputs */ int num_outputs; - - /**< stride for an entire vertex, only used if all output_buffers - * are 0 */ + /** stride for an entire vertex, only used if all output_buffers are 0 */ unsigned stride; }; |