anv: Get rid of meta

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
Jason Ekstrand
2016-10-07 15:06:47 -07:00
parent d823f92970
commit dedc406ec8
7 changed files with 2 additions and 765 deletions

View File

@@ -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.