Home
last modified time | relevance | path

Searched refs:phys_dev (Results 1 – 8 of 8) sorted by relevance

/external/vulkan-validation-layers/loader/
Dwsi.c217 struct loader_physical_device *phys_dev = in terminator_GetPhysicalDeviceSurfaceSupportKHR() local
220 (struct loader_instance *)phys_dev->this_icd->this_instance; in terminator_GetPhysicalDeviceSurfaceSupportKHR()
229 struct loader_icd *icd = phys_dev->this_icd; in terminator_GetPhysicalDeviceSurfaceSupportKHR()
240 NULL != (void *)icd_surface->real_icd_surfaces[phys_dev->icd_index]) { in terminator_GetPhysicalDeviceSurfaceSupportKHR()
242 phys_dev->phys_dev, queueFamilyIndex, in terminator_GetPhysicalDeviceSurfaceSupportKHR()
243 icd_surface->real_icd_surfaces[phys_dev->icd_index], pSupported); in terminator_GetPhysicalDeviceSurfaceSupportKHR()
247 phys_dev->phys_dev, queueFamilyIndex, surface, pSupported); in terminator_GetPhysicalDeviceSurfaceSupportKHR()
272 struct loader_physical_device *phys_dev = in terminator_GetPhysicalDeviceSurfaceCapabilitiesKHR() local
275 (struct loader_instance *)phys_dev->this_icd->this_instance; in terminator_GetPhysicalDeviceSurfaceCapabilitiesKHR()
284 struct loader_icd *icd = phys_dev->this_icd; in terminator_GetPhysicalDeviceSurfaceCapabilitiesKHR()
[all …]
Dextensions.c54 struct loader_physical_device *phys_dev = in terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV() local
56 struct loader_icd *icd = phys_dev->this_icd; in terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV()
72 phys_dev->phys_dev, format, type, tiling, usage, flags, in terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV()
77 phys_dev->phys_dev, format, type, tiling, usage, flags, in terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV()
Dloader.c782 struct loader_physical_device *phys_dev, argument
804 phys_dev->this_icd->this_icd_lib->lib_name, spec_version);
3956 res = fpCreateDevice(pd->phys_dev, &loader_create_info, pAllocator,
4057 struct loader_physical_device_tramp *phys_dev, argument
4069 loader_log(phys_dev->this_instance, VK_DEBUG_REPORT_ERROR_BIT_EXT,
4297 struct loader_physical_device *phys_dev; local
4298 phys_dev = (struct loader_physical_device *)physicalDevice;
4301 PFN_vkCreateDevice fpCreateDevice = phys_dev->this_icd->CreateDevice;
4307 loader_log(phys_dev->this_icd->this_instance,
4310 phys_dev->this_icd->this_icd_lib->lib_name);
[all …]
Dloader.h335 VkPhysicalDevice phys_dev; // object from layers/loader terminator member
343 VkPhysicalDevice phys_dev; // object from ICD member
367 struct loader_physical_device_tramp *phys_dev = in loader_unwrap_physical_device() local
369 return phys_dev->phys_dev; in loader_unwrap_physical_device()
561 struct loader_physical_device_tramp *phys_dev,
Dtrampoline.c572 inst->phys_devs[i].phys_dev = pPhysicalDevices[i];
653 struct loader_physical_device_tramp *phys_dev = NULL; local
661 phys_dev = (struct loader_physical_device_tramp *)physicalDevice;
662 inst = (struct loader_instance *)phys_dev->this_instance;
676 phys_dev->phys_dev, "Unknown", &icd_exts);
683 phys_dev, &inst->activated_layer_list, &icd_exts, pCreateInfo);
708 res = loader_create_device_chain(phys_dev, pCreateInfo, pAllocator, inst,
776 struct loader_physical_device_tramp *phys_dev; local
777 phys_dev = (struct loader_physical_device_tramp *)physicalDevice;
790 phys_dev->phys_dev, NULL, pPropertyCount, pProperties);
[all …]
/external/vulkan-validation-layers/tests/layers/
Dwrap_objects.cpp123 wrapped_phys_dev_obj *phys_dev; in vkGetPhysicalDeviceFeatures() local
124 auto vk_phys_dev = unwrap_phys_dev(physicalDevice, &phys_dev); in vkGetPhysicalDeviceFeatures()
125 phys_dev->inst->layer_disp.GetPhysicalDeviceFeatures(vk_phys_dev, pFeatures); in vkGetPhysicalDeviceFeatures()
130 wrapped_phys_dev_obj *phys_dev; in vkGetPhysicalDeviceFormatProperties() local
131 auto vk_phys_dev = unwrap_phys_dev(physicalDevice, &phys_dev); in vkGetPhysicalDeviceFormatProperties()
132phys_dev->inst->layer_disp.GetPhysicalDeviceFormatProperties(vk_phys_dev, format, pFormatPropertie… in vkGetPhysicalDeviceFormatProperties()
137 wrapped_phys_dev_obj *phys_dev; in vkGetPhysicalDeviceImageFormatProperties() local
138 auto vk_phys_dev = unwrap_phys_dev(physicalDevice, &phys_dev); in vkGetPhysicalDeviceImageFormatProperties()
139 …VkResult result = phys_dev->inst->layer_disp.GetPhysicalDeviceImageFormatProperties(vk_phys_dev, f… in vkGetPhysicalDeviceImageFormatProperties()
145 wrapped_phys_dev_obj *phys_dev; in vkGetPhysicalDeviceProperties() local
[all …]
Dwrap_objects.h52 …lDevice unwrap_phys_dev(const VkPhysicalDevice physical_device, wrapped_phys_dev_obj **phys_dev) { in unwrap_phys_dev() argument
53 *phys_dev = reinterpret_cast<wrapped_phys_dev_obj *> (physical_device); in unwrap_phys_dev()
54 return reinterpret_cast <VkPhysicalDevice> ((*phys_dev)->obj); in unwrap_phys_dev()
/external/vulkan-validation-layers/tests/
Dtest_environment.cpp128 vk_testing::PhysicalDevice phys_dev(gpus[0]); in SetUp() local
129 device_extensions = phys_dev.extensions(); in SetUp()