diff options
author | Jason Ekstrand <[email protected]> | 2016-10-07 15:06:47 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-10-14 15:40:39 -0700 |
commit | dedc406ec8adc6a36eb2b37e3f565aaa1dce6e3f (patch) | |
tree | 00ab93a85c96886b33f42fe248c392d12bb89402 /src/intel/vulkan/anv_device.c | |
parent | d823f92970447859c4891728da4e48f0c9bc0044 (diff) |
anv: Get rid of meta
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 24f7227aa81..725a5720971 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. |