iris: Fix memory leak for draw parameter resources
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 27 Jun 2019 18:49:41 +0000 (11:49 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 27 Jun 2019 21:59:39 +0000 (14:59 -0700)
Need to pitch these on context destroy.

src/gallium/drivers/iris/iris_state.c

index d717b48..8d7b255 100644 (file)
@@ -5614,6 +5614,9 @@ iris_destroy_state(struct iris_context *ice)
 {
    struct iris_genx_state *genx = ice->state.genx;
 
+   pipe_resource_reference(&ice->draw.draw_params_res, NULL);
+   pipe_resource_reference(&ice->draw.derived_draw_params_res, NULL);
+
    uint64_t bound_vbs = ice->state.bound_vertex_buffers;
    while (bound_vbs) {
       const int i = u_bit_scan64(&bound_vbs);