diff options
author | Jason Ekstrand <[email protected]> | 2015-06-08 13:52:34 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-06-08 13:53:19 -0700 |
commit | 66a4dab89ad0c5788a4bfa23b1c91f7ed977db06 (patch) | |
tree | bcadfd7a594796b33d250bd7c08ce10b3772dbd6 /src/vulkan | |
parent | 920fb771d499df1b951e9c302ebb22eb413d9fa8 (diff) |
vk/pipeline: Don't destroy the program stream
It's freed in compiler.cpp and we don't want to free it twice.
Diffstat (limited to 'src/vulkan')
-rw-r--r-- | src/vulkan/pipeline.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vulkan/pipeline.c b/src/vulkan/pipeline.c index 1a193d91e09..f5f43d5a76e 100644 --- a/src/vulkan/pipeline.c +++ b/src/vulkan/pipeline.c @@ -379,7 +379,6 @@ anv_pipeline_destroy(struct anv_device *device, anv_compiler_free(pipeline); anv_reloc_list_finish(&pipeline->batch.relocs, pipeline->device); - anv_state_stream_finish(&pipeline->program_stream); anv_state_pool_free(&device->dynamic_state_pool, pipeline->blend_state); anv_device_free(pipeline->device, pipeline); } |