summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_device.c
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-10-07 15:06:47 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-10-14 15:40:39 -0700
commitdedc406ec8adc6a36eb2b37e3f565aaa1dce6e3f (patch)
tree00ab93a85c96886b33f42fe248c392d12bb89402 /src/intel/vulkan/anv_device.c
parentd823f92970447859c4891728da4e48f0c9bc0044 (diff)
downloadexternal_mesa3d-dedc406ec8adc6a36eb2b37e3f565aaa1dce6e3f.zip
external_mesa3d-dedc406ec8adc6a36eb2b37e3f565aaa1dce6e3f.tar.gz
external_mesa3d-dedc406ec8adc6a36eb2b37e3f565aaa1dce6e3f.tar.bz2
anv: Get rid of meta
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r--src/intel/vulkan/anv_device.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index 24f7227..725a572 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -942,10 +942,6 @@ VkResult anv_CreateDevice(
if (result != VK_SUCCESS)
goto fail_fd;
- result = anv_device_init_meta(device);
- if (result != VK_SUCCESS)
- goto fail_fd;
-
anv_device_init_blorp(device);
anv_device_init_border_colors(device);
@@ -972,8 +968,6 @@ void anv_DestroyDevice(
anv_device_finish_blorp(device);
- anv_device_finish_meta(device);
-
#ifdef HAVE_VALGRIND
/* We only need to free these to prevent valgrind errors. The backing
* BO will go away in a couple of lines so we don't actually leak.