summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2015-11-02 14:31:56 -0800
committerIan Romanick <[email protected]>2015-11-24 11:50:28 -0800
commite8cf4e490fc367bd68f31acffc0289efa52b7f79 (patch)
treee5e05a76010879790336f28f463d14a41868a10e
parent86a0afb460c1ea0b2a0f4a9e66c7e4a02a0130e2 (diff)
i965: Use DSA functions for VBOs in brw_meta_fast_clear
Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Abdiel Janulgue <[email protected]> Reviewed-by: Anuj Phogat <[email protected]> (cherry picked from commit 1c5423d3a074d50138e5ad7945024f9cf4d063ec)
-rw-r--r--src/mesa/drivers/dri/i965/brw_meta_fast_clear.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c b/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c
index 41037a8a747..775aabdd6e1 100644
--- a/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c
+++ b/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c
@@ -68,7 +68,6 @@ brw_fast_clear_init(struct brw_context *brw)
if (brw->fast_clear_state) {
clear = brw->fast_clear_state;
_mesa_BindVertexArray(clear->vao);
- _mesa_BindBuffer(GL_ARRAY_BUFFER, clear->vbo);
return true;
}
@@ -79,9 +78,10 @@ brw_fast_clear_init(struct brw_context *brw)
memset(clear, 0, sizeof *clear);
_mesa_GenVertexArrays(1, &clear->vao);
_mesa_BindVertexArray(clear->vao);
- _mesa_GenBuffers(1, &clear->vbo);
- _mesa_BindBuffer(GL_ARRAY_BUFFER, clear->vbo);
- _mesa_VertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, sizeof(float) * 2, 0);
+ _mesa_CreateBuffers(1, &clear->vbo);
+ _mesa_VertexArrayAttribFormat(clear->vao, 0, 2, GL_FLOAT, GL_FALSE, 0);
+ _mesa_VertexArrayVertexBuffer(clear->vao, 0, clear->vbo, 0,
+ sizeof(float) * 2);
_mesa_EnableVertexAttribArray(0);
return true;
@@ -168,6 +168,7 @@ static void
brw_draw_rectlist(struct brw_context *brw, struct rect *rect, int num_instances)
{
struct gl_context *ctx = &brw->ctx;
+ struct brw_fast_clear_state *clear = brw->fast_clear_state;
int start = 0, count = 3;
struct _mesa_prim prim;
float verts[6];
@@ -180,8 +181,8 @@ brw_draw_rectlist(struct brw_context *brw, struct rect *rect, int num_instances)
verts[5] = rect->y0;
/* upload new vertex data */
- _mesa_BufferData(GL_ARRAY_BUFFER_ARB, sizeof(verts), verts,
- GL_DYNAMIC_DRAW_ARB);
+ _mesa_NamedBufferData(clear->vbo, sizeof(verts), verts,
+ GL_DYNAMIC_DRAW);
if (ctx->NewState)
_mesa_update_state(ctx);