/* * Copyright 2019 Google LLC * SPDX-License-Identifier: MIT * * based in part on anv and radv which are: * Copyright © 2015 Intel Corporation * Copyright © 2016 Red Hat. * Copyright © 2016 Bas Nieuwenhuizen */ #ifndef VN_PHYSICAL_DEVICE_H #define VN_PHYSICAL_DEVICE_H #include "vn_common.h" #include "vn_wsi.h" struct vn_physical_device { struct vn_physical_device_base base; struct vn_instance *instance; /* Between the driver and the app, properties.properties.apiVersion is what * we advertise and is capped by VN_MAX_API_VERSION and others. * * Between the driver and the renderer, renderer_version is the device * version we can use internally. */ uint32_t renderer_version; /* Between the driver and the app, base.base.supported_extensions is what * we advertise. * * Between the driver and the renderer, renderer_extensions is what we can * use internally (after enabling). */ struct vk_device_extension_table renderer_extensions; uint32_t *extension_spec_versions; VkPhysicalDeviceFeatures2 features; VkPhysicalDeviceVulkan11Features vulkan_1_1_features; VkPhysicalDeviceVulkan12Features vulkan_1_2_features; VkPhysicalDeviceTransformFeedbackFeaturesEXT transform_feedback_features; VkPhysicalDeviceProperties2 properties; VkPhysicalDeviceVulkan11Properties vulkan_1_1_properties; VkPhysicalDeviceVulkan12Properties vulkan_1_2_properties; VkPhysicalDeviceTransformFeedbackPropertiesEXT transform_feedback_properties; VkQueueFamilyProperties2 *queue_family_properties; uint32_t queue_family_count; VkPhysicalDeviceMemoryProperties2 memory_properties; struct { VkExternalMemoryHandleTypeFlagBits renderer_handle_type; VkExternalMemoryHandleTypeFlags supported_handle_types; } external_memory; VkExternalFenceHandleTypeFlags external_fence_handles; VkExternalSemaphoreHandleTypeFlags external_binary_semaphore_handles; VkExternalSemaphoreHandleTypeFlags external_timeline_semaphore_handles; struct wsi_device wsi_device; }; VK_DEFINE_HANDLE_CASTS(vn_physical_device, base.base.base, VkPhysicalDevice, VK_OBJECT_TYPE_PHYSICAL_DEVICE) void vn_physical_device_fini(struct vn_physical_device *physical_dev); #endif /* VN_PHYSICAL_DEVICE_H */