summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2018-07-05 13:34:14 -0700
committerEric Anholt <[email protected]>2018-07-05 15:50:54 -0700
commit9d0406c52f01f3e8a8b5dbd523a7ff10b91b0b42 (patch)
tree0fbf8478f52abb022f4e055ba7e14dcfa68493e3 /src
parent6b111313738bb6ec82e7fac9d0be844e62c6e622 (diff)
v3d: Fix leak of the default attributes BOs.
The GLES3 CTS makes a lot more progress on a run now.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/v3d/v3dx_state.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gallium/drivers/v3d/v3dx_state.c b/src/gallium/drivers/v3d/v3dx_state.c
index ff1c4b52125..f775c531e5f 100644
--- a/src/gallium/drivers/v3d/v3dx_state.c
+++ b/src/gallium/drivers/v3d/v3dx_state.c
@@ -417,6 +417,15 @@ v3d_vertex_state_create(struct pipe_context *pctx, unsigned num_elements,
}
static void
+v3d_vertex_state_delete(struct pipe_context *pctx, void *hwcso)
+{
+ struct v3d_vertex_stateobj *so = hwcso;
+
+ v3d_bo_unreference(&so->default_attribute_values);
+ free(so);
+}
+
+static void
v3d_vertex_state_bind(struct pipe_context *pctx, void *hwcso)
{
struct v3d_context *v3d = v3d_context(pctx);
@@ -959,7 +968,7 @@ v3dX(state_init)(struct pipe_context *pctx)
pctx->delete_depth_stencil_alpha_state = v3d_generic_cso_state_delete;
pctx->create_vertex_elements_state = v3d_vertex_state_create;
- pctx->delete_vertex_elements_state = v3d_generic_cso_state_delete;
+ pctx->delete_vertex_elements_state = v3d_vertex_state_delete;
pctx->bind_vertex_elements_state = v3d_vertex_state_bind;
pctx->create_sampler_state = v3d_create_sampler_state;