summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-06-09 12:35:21 -0700
committerJason Ekstrand <[email protected]>2015-06-09 12:36:23 -0700
commitd842a6965fe6990c7c4f52abf59008b2cb214a17 (patch)
tree96f64857f4e4354c385940395c5bb64ccb53412a /src
parent9f292219bfd7dbbbfe5a94096143f0942e72fd7e (diff)
vk/compiler: Free the GL errors data
Diffstat (limited to 'src')
-rw-r--r--src/vulkan/compiler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vulkan/compiler.cpp b/src/vulkan/compiler.cpp
index de4d8839f70..6adf92b3662 100644
--- a/src/vulkan/compiler.cpp
+++ b/src/vulkan/compiler.cpp
@@ -687,6 +687,7 @@ anv_compiler_create(struct anv_device *device)
void
anv_compiler_destroy(struct anv_compiler *compiler)
{
+ _mesa_free_errors_data(&compiler->brw->ctx);
ralloc_free(compiler);
}