From: Stéphane Marchesin Date: Tue, 18 Oct 2011 17:26:04 +0000 (-0700) Subject: i915g: Cleanup the vertex sampler interface a bit. X-Git-Tag: mesa-8.0-rc1~1499 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b1d93d2aa8395608e77f1c538aa2234ced3dda75;p=platform%2Fupstream%2Fmesa.git i915g: Cleanup the vertex sampler interface a bit. --- diff --git a/src/gallium/drivers/i915/i915_context.c b/src/gallium/drivers/i915/i915_context.c index ff6d715..5a61740 100644 --- a/src/gallium/drivers/i915/i915_context.c +++ b/src/gallium/drivers/i915/i915_context.c @@ -80,9 +80,7 @@ i915_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info) draw_set_mapped_constant_buffer(draw, PIPE_SHADER_VERTEX, 0, NULL, 0); if (i915->num_vertex_sampler_views > 0) - i915_prepare_vertex_sampling(i915, - i915->num_vertex_sampler_views, - i915->vertex_sampler_views); + i915_prepare_vertex_sampling(i915); /* * Do the drawing diff --git a/src/gallium/drivers/i915/i915_context.h b/src/gallium/drivers/i915/i915_context.h index 7f67f5f..7406b7e 100644 --- a/src/gallium/drivers/i915/i915_context.h +++ b/src/gallium/drivers/i915/i915_context.h @@ -370,9 +370,7 @@ struct draw_stage *i915_draw_vbuf_stage( struct i915_context *i915 ); /*********************************************************************** * i915_state.c: */ -void i915_prepare_vertex_sampling(struct i915_context *i915, - unsigned num, - struct pipe_sampler_view **views); +void i915_prepare_vertex_sampling(struct i915_context *i915); void i915_cleanup_vertex_sampling(struct i915_context *i915); diff --git a/src/gallium/drivers/i915/i915_state.c b/src/gallium/drivers/i915/i915_state.c index f018f52..bb4089e 100644 --- a/src/gallium/drivers/i915/i915_state.c +++ b/src/gallium/drivers/i915/i915_state.c @@ -364,15 +364,15 @@ static void i915_delete_sampler_state(struct pipe_context *pipe, * Called before drawing VBO to map vertex samplers and hand them to draw */ void -i915_prepare_vertex_sampling(struct i915_context *i915, - unsigned num, - struct pipe_sampler_view **views) +i915_prepare_vertex_sampling(struct i915_context *i915) { struct i915_winsys *iws = i915->iws; unsigned i,j; uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS]; uint32_t img_stride[PIPE_MAX_TEXTURE_LEVELS]; const void* data[PIPE_MAX_TEXTURE_LEVELS]; + unsigned num = i915->num_vertex_sampler_views; + struct pipe_sampler_view **views = i915->vertex_sampler_views; assert(num <= PIPE_MAX_VERTEX_SAMPLERS); if (!num)