gallium: fix comments for pipe_stream_output_state
authorBrian Paul <brianp@vmware.com>
Wed, 8 Jun 2011 14:05:40 +0000 (08:05 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 8 Jun 2011 14:05:40 +0000 (08:05 -0600)
src/gallium/include/pipe/p_state.h

index 86ef255cd2e6b784bc0bee576aa38a7e4593b190..d442c15c02a1ffb31fc4f88e13140ed7020f40e4 100644 (file)
@@ -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;
 };