mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 19:10:14 +01:00
gallium: fix comments for pipe_stream_output_state
This commit is contained in:
parent
3d75c42bbf
commit
713fb50759
1 changed files with 9 additions and 7 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue