Lines Matching refs:physicalDevice
402 VkPhysicalDevice physicalDevice = VK_NULL_HANDLE; in vkCreateInstance() local
404 VkResult result = vk::DispatchablePhysicalDevice::Create(pAllocator, pCreateInfo, &physicalDevice); in vkCreateInstance()
410 result = vk::DispatchableInstance::Create(pAllocator, pCreateInfo, pInstance, physicalDevice); in vkCreateInstance()
413 vk::destroy(physicalDevice, pAllocator); in vkCreateInstance()
435 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice, VkPhysicalD… in vkGetPhysicalDeviceFeatures() argument
438 physicalDevice, pFeatures); in vkGetPhysicalDeviceFeatures()
440 *pFeatures = vk::Cast(physicalDevice)->getFeatures(); in vkGetPhysicalDeviceFeatures()
443 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFormatProperties(VkPhysicalDevice physicalDevice, VkF… in vkGetPhysicalDeviceFormatProperties() argument
446 physicalDevice, (int)format, pFormatProperties); in vkGetPhysicalDeviceFormatProperties()
448 vk::Cast(physicalDevice)->getFormatProperties(format, pFormatProperties); in vkGetPhysicalDeviceFormatProperties()
451 …VKAPI_CALL vkGetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDevice, VkFormat form… in vkGetPhysicalDeviceImageFormatProperties() argument
454 physicalDevice, (int)format, (int)type, (int)tiling, usage, flags, pImageFormatProperties); in vkGetPhysicalDeviceImageFormatProperties()
461 vk::Cast(physicalDevice)->getFormatProperties(format, &properties); in vkGetPhysicalDeviceImageFormatProperties()
555 …vk::Cast(physicalDevice)->getImageFormatProperties(format, type, tiling, usage, flags, pImageForma… in vkGetPhysicalDeviceImageFormatProperties()
560 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice, VkPhysica… in vkGetPhysicalDeviceProperties() argument
563 physicalDevice, pProperties); in vkGetPhysicalDeviceProperties()
565 *pProperties = vk::Cast(physicalDevice)->getProperties(); in vkGetPhysicalDeviceProperties()
568 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice… in vkGetPhysicalDeviceQueueFamilyProperties() argument
570 …Count = %p, VkQueueFamilyProperties* pQueueFamilyProperties = %p))", physicalDevice, pQueueFamilyP… in vkGetPhysicalDeviceQueueFamilyProperties()
574 *pQueueFamilyPropertyCount = vk::Cast(physicalDevice)->getQueueFamilyPropertyCount(); in vkGetPhysicalDeviceQueueFamilyProperties()
578 …vk::Cast(physicalDevice)->getQueueFamilyProperties(*pQueueFamilyPropertyCount, pQueueFamilyPropert… in vkGetPhysicalDeviceQueueFamilyProperties()
582 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceMemoryProperties(VkPhysicalDevice physicalDevice, VkP… in vkGetPhysicalDeviceMemoryProperties() argument
584 …ce = %p, VkPhysicalDeviceMemoryProperties* pMemoryProperties = %p)", physicalDevice, pMemoryProper… in vkGetPhysicalDeviceMemoryProperties()
586 *pMemoryProperties = vk::Cast(physicalDevice)->getMemoryProperties(); in vkGetPhysicalDeviceMemoryProperties()
603 VKAPI_ATTR VkResult VKAPI_CALL vkCreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreate… in vkCreateDevice() argument
606 physicalDevice, pCreateInfo, pAllocator, pDevice); in vkCreateDevice()
696 (groupDeviceCreateInfo->pPhysicalDevices[0] != physicalDevice)) in vkCreateDevice()
767 if(!vk::Cast(physicalDevice)->hasFeatures(*enabledFeatures)) in vkCreateDevice()
773 uint32_t queueFamilyPropertyCount = vk::Cast(physicalDevice)->getQueueFamilyPropertyCount(); in vkCreateDevice()
795 …return vk::DispatchableDevice::Create(pAllocator, pCreateInfo, pDevice, vk::Cast(physicalDevice), … in vkCreateDevice()
828 VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateDeviceExtensionProperties(VkPhysicalDevice physicalDevice… in vkEnumerateDeviceExtensionProperties() argument
830 …2_t* pPropertyCount = %p, VkExtensionProperties* pProperties = %p)", physicalDevice, pPropertyCoun… in vkEnumerateDeviceExtensionProperties()
863 VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, ui… in vkEnumerateDeviceLayerProperties() argument
865 …int32_t* pPropertyCount = %p, VkLayerProperties* pProperties = %p)", physicalDevice, pPropertyCoun… in vkEnumerateDeviceLayerProperties()
1189 …CALL vkGetPhysicalDeviceSparseImageFormatProperties(VkPhysicalDevice physicalDevice, VkFormat form… in vkGetPhysicalDeviceSparseImageFormatProperties() argument
1192 physicalDevice, format, type, samples, usage, tiling, pPropertyCount, pProperties); in vkGetPhysicalDeviceSparseImageFormatProperties()
2738 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice, VkPhysical… in vkGetPhysicalDeviceFeatures2() argument
2740 …evice physicalDevice = %p, VkPhysicalDeviceFeatures2* pFeatures = %p)", physicalDevice, pFeatures); in vkGetPhysicalDeviceFeatures2()
2750 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2756 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2762 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2768 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2774 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2780 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2786 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2792 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2798 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2804 vk::Cast(physicalDevice)->getFeatures(features); in vkGetPhysicalDeviceFeatures2()
2831 vkGetPhysicalDeviceFeatures(physicalDevice, &(pFeatures->features)); in vkGetPhysicalDeviceFeatures2()
2834 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice, VkPhysic… in vkGetPhysicalDeviceProperties2() argument
2836 …physicalDevice = %p, VkPhysicalDeviceProperties2* pProperties = %p)", physicalDevice, pProperties); in vkGetPhysicalDeviceProperties2()
2850 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2856 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2862 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2868 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2874 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2880 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2891 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2897 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2904 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2911 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2917 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceProperties2()
2929 vkGetPhysicalDeviceProperties(physicalDevice, &(pProperties->properties)); in vkGetPhysicalDeviceProperties2()
2932 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFormatProperties2(VkPhysicalDevice physicalDevice, Vk… in vkGetPhysicalDeviceFormatProperties2() argument
2935 physicalDevice, format, pFormatProperties); in vkGetPhysicalDeviceFormatProperties2()
2944 …vkGetPhysicalDeviceFormatProperties(physicalDevice, format, &(pFormatProperties->formatProperties)… in vkGetPhysicalDeviceFormatProperties2()
2947 …KAPI_CALL vkGetPhysicalDeviceImageFormatProperties2(VkPhysicalDevice physicalDevice, const VkPhysi… in vkGetPhysicalDeviceImageFormatProperties2() argument
2950 physicalDevice, pImageFormatInfo, pImageFormatProperties); in vkGetPhysicalDeviceImageFormatProperties2()
3003 vk::Cast(physicalDevice)->getProperties(handleType, properties); in vkGetPhysicalDeviceImageFormatProperties2()
3009 vk::Cast(physicalDevice)->getProperties(properties); in vkGetPhysicalDeviceImageFormatProperties2()
3027 return vkGetPhysicalDeviceImageFormatProperties(physicalDevice, in vkGetPhysicalDeviceImageFormatProperties2()
3036 …KAPI_CALL vkGetPhysicalDeviceQueueFamilyProperties2(VkPhysicalDevice physicalDevice, uint32_t *pQu… in vkGetPhysicalDeviceQueueFamilyProperties2() argument
3039 physicalDevice, pQueueFamilyPropertyCount, pQueueFamilyProperties); in vkGetPhysicalDeviceQueueFamilyProperties2()
3053 *pQueueFamilyPropertyCount = vk::Cast(physicalDevice)->getQueueFamilyPropertyCount(); in vkGetPhysicalDeviceQueueFamilyProperties2()
3057 …vk::Cast(physicalDevice)->getQueueFamilyProperties(*pQueueFamilyPropertyCount, pQueueFamilyPropert… in vkGetPhysicalDeviceQueueFamilyProperties2()
3061 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceMemoryProperties2(VkPhysicalDevice physicalDevice, Vk… in vkGetPhysicalDeviceMemoryProperties2() argument
3063 …e = %p, VkPhysicalDeviceMemoryProperties2* pMemoryProperties = %p)", physicalDevice, pMemoryProper… in vkGetPhysicalDeviceMemoryProperties2()
3072 vkGetPhysicalDeviceMemoryProperties(physicalDevice, &(pMemoryProperties->memoryProperties)); in vkGetPhysicalDeviceMemoryProperties2()
3075 …ALL vkGetPhysicalDeviceSparseImageFormatProperties2(VkPhysicalDevice physicalDevice, const VkPhysi… in vkGetPhysicalDeviceSparseImageFormatProperties2() argument
3078 physicalDevice, pFormatInfo, pPropertyCount, pProperties); in vkGetPhysicalDeviceSparseImageFormatProperties2()
3198 …PI_CALL vkGetPhysicalDeviceExternalBufferProperties(VkPhysicalDevice physicalDevice, const VkPhysi… in vkGetPhysicalDeviceExternalBufferProperties() argument
3201 physicalDevice, pExternalBufferInfo, pExternalBufferProperties); in vkGetPhysicalDeviceExternalBufferProperties()
3203 vk::Cast(physicalDevice)->getProperties(pExternalBufferInfo, pExternalBufferProperties); in vkGetPhysicalDeviceExternalBufferProperties()
3206 …API_CALL vkGetPhysicalDeviceExternalFenceProperties(VkPhysicalDevice physicalDevice, const VkPhysi… in vkGetPhysicalDeviceExternalFenceProperties() argument
3209 physicalDevice, pExternalFenceInfo, pExternalFenceProperties); in vkGetPhysicalDeviceExternalFenceProperties()
3211 vk::Cast(physicalDevice)->getProperties(pExternalFenceInfo, pExternalFenceProperties); in vkGetPhysicalDeviceExternalFenceProperties()
3214 …CALL vkGetPhysicalDeviceExternalSemaphoreProperties(VkPhysicalDevice physicalDevice, const VkPhysi… in vkGetPhysicalDeviceExternalSemaphoreProperties() argument
3217 physicalDevice, pExternalSemaphoreInfo, pExternalSemaphoreProperties); in vkGetPhysicalDeviceExternalSemaphoreProperties()
3219 vk::Cast(physicalDevice)->getProperties(pExternalSemaphoreInfo, pExternalSemaphoreProperties); in vkGetPhysicalDeviceExternalSemaphoreProperties()
3247 …I_CALL vkGetPhysicalDeviceXcbPresentationSupportKHR(VkPhysicalDevice physicalDevice, uint32_t queu… in vkGetPhysicalDeviceXcbPresentationSupportKHR() argument
3250 physicalDevice, int(queueFamilyIndex), connection, int(visual_id)); in vkGetPhysicalDeviceXcbPresentationSupportKHR()
3265 …_CALL vkGetPhysicalDeviceXlibPresentationSupportKHR(VkPhysicalDevice physicalDevice, uint32_t queu… in vkGetPhysicalDeviceXlibPresentationSupportKHR() argument
3268 physicalDevice, int(queueFamilyIndex), dpy, visualID); in vkGetPhysicalDeviceXlibPresentationSupportKHR()
3303 …CALL vkGetPhysicalDeviceWin32PresentationSupportKHR(VkPhysicalDevice physicalDevice, uint32_t queu… in vkGetPhysicalDeviceWin32PresentationSupportKHR() argument
3306 physicalDevice, queueFamilyIndex); in vkGetPhysicalDeviceWin32PresentationSupportKHR()
3320 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceSupportKHR(VkPhysicalDevice physicalDevice… in vkGetPhysicalDeviceSurfaceSupportKHR() argument
3323 physicalDevice, int(queueFamilyIndex), static_cast<void *>(surface), pSupported); in vkGetPhysicalDeviceSurfaceSupportKHR()
3329 …KAPI_CALL vkGetPhysicalDeviceSurfaceCapabilitiesKHR(VkPhysicalDevice physicalDevice, VkSurfaceKHR … in vkGetPhysicalDeviceSurfaceCapabilitiesKHR() argument
3332 physicalDevice, static_cast<void *>(surface), pSurfaceCapabilities); in vkGetPhysicalDeviceSurfaceCapabilitiesKHR()
3338 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceFormatsKHR(VkPhysicalDevice physicalDevice… in vkGetPhysicalDeviceSurfaceFormatsKHR() argument
3341 physicalDevice, static_cast<void *>(surface), pSurfaceFormatCount, pSurfaceFormats); in vkGetPhysicalDeviceSurfaceFormatsKHR()
3352 …KAPI_CALL vkGetPhysicalDeviceSurfacePresentModesKHR(VkPhysicalDevice physicalDevice, VkSurfaceKHR … in vkGetPhysicalDeviceSurfacePresentModesKHR() argument
3355 physicalDevice, static_cast<void *>(surface), pPresentModeCount, pPresentModes); in vkGetPhysicalDeviceSurfacePresentModesKHR()
3474 … VKAPI_CALL vkGetPhysicalDevicePresentRectanglesKHR(VkPhysicalDevice physicalDevice, VkSurfaceKHR … in vkGetPhysicalDevicePresentRectanglesKHR() argument
3477 physicalDevice, static_cast<void *>(surface), pRectCount, pRects); in vkGetPhysicalDevicePresentRectanglesKHR()