lavapipe: drop apiVersion from instance

this isn't used

Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39255>
This commit is contained in:
Dave Airlie 2025-11-02 07:14:06 +10:00 committed by Marge Bot
parent 9a6c57b5c7
commit e21d1bcea7
2 changed files with 0 additions and 4 deletions

View file

@ -1495,8 +1495,6 @@ VKAPI_ATTR VkResult VKAPI_CALL lvp_CreateInstance(
return vk_error(NULL, result);
}
instance->apiVersion = LVP_API_VERSION;
instance->vk.physical_devices.enumerate = lvp_enumerate_physical_devices;
instance->vk.physical_devices.destroy = lvp_destroy_physical_device;

View file

@ -168,8 +168,6 @@ struct lvp_physical_device {
struct lvp_instance {
struct vk_instance vk;
uint32_t apiVersion;
uint64_t debug_flags;
struct pipe_loader_device *devs;