[Mesa-dev] [PATCH 11/23] i965: Use _mesa_NamedBufferSubData for users of _mesa_meta_setup_vertex_objects

Anuj Phogat anuj.phogat at gmail.com
Tue Nov 10 10:42:00 PST 2015


On Mon, Nov 9, 2015 at 4:56 PM, Ian Romanick <idr at freedesktop.org> wrote:
> From: Ian Romanick <ian.d.romanick at intel.com>
>
> Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
> ---
>  src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c b/src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c
> index cbbb919..62ae4e7 100644
> --- a/src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c
> +++ b/src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c
> @@ -360,7 +360,7 @@ adjust_mip_level(const struct intel_mipmap_tree *mt,
>  }
>
>  static void
> -prepare_vertex_data(void)
> +prepare_vertex_data(GLuint vbo)
>  {
>     static const struct vertex verts[] = {
>        { .x = -1.0f, .y = -1.0f },
> @@ -368,7 +368,7 @@ prepare_vertex_data(void)
>        { .x =  1.0f, .y =  1.0f },
>        { .x = -1.0f, .y =  1.0f } };
>
> -   _mesa_BufferSubData(GL_ARRAY_BUFFER_ARB, 0, sizeof(verts), verts);
> +   _mesa_NamedBufferSubData(vbo, 0, sizeof(verts), verts);
>  }
>
>  static bool
> @@ -448,7 +448,7 @@ brw_meta_stencil_blit(struct brw_context *brw,
>     _mesa_Uniform1i(_mesa_GetUniformLocation(prog, "dst_num_samples"),
>                     dst_mt->num_samples);
>
> -   prepare_vertex_data();
> +   prepare_vertex_data(ctx->Meta->Blit.VBO);
>     _mesa_set_viewport(ctx, 0, dims.dst_x0, dims.dst_y0,
>                        dims.dst_x1 - dims.dst_x0, dims.dst_y1 - dims.dst_y0);
>     _mesa_ColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
> --
> 2.1.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reviewed-by: Anuj Phogat <anuj.phogat at gmail.com>


More information about the mesa-dev mailing list