Module: Mesa Branch: main Commit: d0fea83d7bcb960e5a68d15fc8ecc217b2573d19 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d0fea83d7bcb960e5a68d15fc8ecc217b2573d19
Author: Jason Ekstrand <[email protected]> Date: Sat Sep 3 00:03:48 2022 -0500 hasvk: Rip out local memory support Things could probably be simplified further but this at least gets rid of most of the dead code and the dead flags and fields. Reviewed-by: Lionel Landwerlin <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19852> --- src/intel/vulkan_hasvk/anv_device.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/intel/vulkan_hasvk/anv_device.c b/src/intel/vulkan_hasvk/anv_device.c index f8a5678e091..76dbd0945a4 100644 --- a/src/intel/vulkan_hasvk/anv_device.c +++ b/src/intel/vulkan_hasvk/anv_device.c @@ -385,7 +385,6 @@ anv_update_meminfo(struct anv_physical_device *device, int fd) device->sys.available = devinfo->mem.sram.mappable.free; } - static VkResult anv_physical_device_init_heaps(struct anv_physical_device *device, int fd) { @@ -1757,9 +1756,7 @@ void anv_GetPhysicalDeviceProperties( .driverVersion = vk_get_driver_version(), .vendorID = 0x8086, .deviceID = pdevice->info.pci_device_id, - .deviceType = pdevice->info.has_local_mem ? - VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU : - VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU, + .deviceType = VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU, .limits = limits, .sparseProperties = {0}, /* Broadwell doesn't do sparse. */ };
