gallium: rename draw_auto to draw_stream_output, plus fix a comment

Brian spotted those
This commit is contained in:
Zack Rusin 2010-06-02 12:57:58 -04:00 committed by Zack Rusin
parent 2c22b8e61d
commit 3a7fc2e4f3
5 changed files with 4 additions and 5 deletions

View File

@ -276,7 +276,7 @@ softpipe_create_context( struct pipe_screen *screen,
softpipe->pipe.draw_range_elements = softpipe_draw_range_elements;
softpipe->pipe.draw_arrays_instanced = softpipe_draw_arrays_instanced;
softpipe->pipe.draw_elements_instanced = softpipe_draw_elements_instanced;
softpipe->pipe.draw_auto = softpipe_draw_auto;
softpipe->pipe.draw_stream_output = softpipe_draw_stream_output;
softpipe->pipe.clear = softpipe_clear;
softpipe->pipe.flush = softpipe_flush;

View File

@ -85,7 +85,7 @@ softpipe_draw_arrays(struct pipe_context *pipe, unsigned mode,
}
void
softpipe_draw_auto(struct pipe_context *pipe, unsigned mode)
softpipe_draw_stream_output(struct pipe_context *pipe, unsigned mode)
{
struct softpipe_context *sp = softpipe_context(pipe);
struct draw_context *draw = sp->draw;

View File

@ -250,7 +250,7 @@ softpipe_draw_elements_instanced(struct pipe_context *pipe,
unsigned startInstance,
unsigned instanceCount);
void softpipe_draw_auto(struct pipe_context *pipe, unsigned mode);
void softpipe_draw_stream_output(struct pipe_context *pipe, unsigned mode);
void
softpipe_map_transfers(struct softpipe_context *sp);

View File

@ -105,7 +105,7 @@ struct pipe_context {
/**
* Draw the stream output buffer at index 0
*/
void (*draw_auto)( struct pipe_context *pipe, unsigned mode );
void (*draw_stream_output)( struct pipe_context *pipe, unsigned mode );
/*@}*/
/**

View File

@ -352,7 +352,6 @@ struct pipe_stream_output_state
int output_buffer[PIPE_MAX_SHADER_OUTPUTS];
/**< which register to grab each output from */
int register_index[PIPE_MAX_SHADER_OUTPUTS];
/**< format for each output */
/**< TGSI_WRITEMASK signifying which components to output */
ubyte register_mask[PIPE_MAX_SHADER_OUTPUTS];
/**< number of outputs */