• Home
  • Raw
  • Download

Lines Matching refs:device

34 VKAPI_ATTR VkResult checkedCreateSwapchainKHR(VkDevice device, const VkSwapchainCreateInfoKHR* pCre…  in checkedCreateSwapchainKHR()  argument
35 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedCreateSwapchainKHR()
36 return CreateSwapchainKHR(device, pCreateInfo, pAllocator, pSwapchain); in checkedCreateSwapchainKHR()
38 … Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkCreateSwapchainKHR not executed."); in checkedCreateSwapchainKHR()
43 VKAPI_ATTR void checkedDestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapchain, const VkAlloc… in checkedDestroySwapchainKHR() argument
44 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedDestroySwapchainKHR()
45 DestroySwapchainKHR(device, swapchain, pAllocator); in checkedDestroySwapchainKHR()
47 … Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkDestroySwapchainKHR not executed."); in checkedDestroySwapchainKHR()
51 VKAPI_ATTR VkResult checkedGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, uint32_… in checkedGetSwapchainImagesKHR() argument
52 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedGetSwapchainImagesKHR()
53 return GetSwapchainImagesKHR(device, swapchain, pSwapchainImageCount, pSwapchainImages); in checkedGetSwapchainImagesKHR()
55 … Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkGetSwapchainImagesKHR not executed."); in checkedGetSwapchainImagesKHR()
60 VKAPI_ATTR VkResult checkedAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uint64_t … in checkedAcquireNextImageKHR() argument
61 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedAcquireNextImageKHR()
62 return AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pImageIndex); in checkedAcquireNextImageKHR()
64 … Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkAcquireNextImageKHR not executed."); in checkedAcquireNextImageKHR()
78 VKAPI_ATTR VkResult checkedGetDeviceGroupPresentCapabilitiesKHR(VkDevice device, VkDeviceGroupPrese… in checkedGetDeviceGroupPresentCapabilitiesKHR() argument
79 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedGetDeviceGroupPresentCapabilitiesKHR()
80 return GetDeviceGroupPresentCapabilitiesKHR(device, pDeviceGroupPresentCapabilities); in checkedGetDeviceGroupPresentCapabilitiesKHR()
82 …Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkGetDeviceGroupPresentCapabilitiesKHR n… in checkedGetDeviceGroupPresentCapabilitiesKHR()
87 VKAPI_ATTR VkResult checkedGetDeviceGroupSurfacePresentModesKHR(VkDevice device, VkSurfaceKHR surfa… in checkedGetDeviceGroupSurfacePresentModesKHR() argument
88 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedGetDeviceGroupSurfacePresentModesKHR()
89 return GetDeviceGroupSurfacePresentModesKHR(device, surface, pModes); in checkedGetDeviceGroupSurfacePresentModesKHR()
91 …Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkGetDeviceGroupSurfacePresentModesKHR n… in checkedGetDeviceGroupSurfacePresentModesKHR()
96 VKAPI_ATTR VkResult checkedAcquireNextImage2KHR(VkDevice device, const VkAcquireNextImageInfoKHR* p… in checkedAcquireNextImage2KHR() argument
97 if (GetData(device).hook_extensions[ProcHook::KHR_swapchain]) { in checkedAcquireNextImage2KHR()
98 return AcquireNextImage2KHR(device, pAcquireInfo, pImageIndex); in checkedAcquireNextImage2KHR()
100 … Logger(device).Err(device, "VK_KHR_swapchain not enabled. vkAcquireNextImage2KHR not executed."); in checkedAcquireNextImage2KHR()
105 VKAPI_ATTR VkResult checkedGetRefreshCycleDurationGOOGLE(VkDevice device, VkSwapchainKHR swapchain,… in checkedGetRefreshCycleDurationGOOGLE() argument
106 if (GetData(device).hook_extensions[ProcHook::GOOGLE_display_timing]) { in checkedGetRefreshCycleDurationGOOGLE()
107 return GetRefreshCycleDurationGOOGLE(device, swapchain, pDisplayTimingProperties); in checkedGetRefreshCycleDurationGOOGLE()
109 …Logger(device).Err(device, "VK_GOOGLE_display_timing not enabled. vkGetRefreshCycleDurationGOOGLE … in checkedGetRefreshCycleDurationGOOGLE()
114 VKAPI_ATTR VkResult checkedGetPastPresentationTimingGOOGLE(VkDevice device, VkSwapchainKHR swapchai… in checkedGetPastPresentationTimingGOOGLE() argument
115 if (GetData(device).hook_extensions[ProcHook::GOOGLE_display_timing]) { in checkedGetPastPresentationTimingGOOGLE()
116 …return GetPastPresentationTimingGOOGLE(device, swapchain, pPresentationTimingCount, pPresentationT… in checkedGetPastPresentationTimingGOOGLE()
118 …Logger(device).Err(device, "VK_GOOGLE_display_timing not enabled. vkGetPastPresentationTimingGOOGL… in checkedGetPastPresentationTimingGOOGLE()
123 VKAPI_ATTR void checkedSetHdrMetadataEXT(VkDevice device, uint32_t swapchainCount, const VkSwapchai… in checkedSetHdrMetadataEXT() argument
124 if (GetData(device).hook_extensions[ProcHook::EXT_hdr_metadata]) { in checkedSetHdrMetadataEXT()
125 SetHdrMetadataEXT(device, swapchainCount, pSwapchains, pMetadata); in checkedSetHdrMetadataEXT()
127 … Logger(device).Err(device, "VK_EXT_hdr_metadata not enabled. vkSetHdrMetadataEXT not executed."); in checkedSetHdrMetadataEXT()
131 VKAPI_ATTR VkResult checkedGetSwapchainStatusKHR(VkDevice device, VkSwapchainKHR swapchain) { in checkedGetSwapchainStatusKHR() argument
132 if (GetData(device).hook_extensions[ProcHook::KHR_shared_presentable_image]) { in checkedGetSwapchainStatusKHR()
133 return GetSwapchainStatusKHR(device, swapchain); in checkedGetSwapchainStatusKHR()
135 …Logger(device).Err(device, "VK_KHR_shared_presentable_image not enabled. vkGetSwapchainStatusKHR n… in checkedGetSwapchainStatusKHR()
140 VKAPI_ATTR VkResult checkedBindImageMemory2KHR(VkDevice device, uint32_t bindInfoCount, const VkBin… in checkedBindImageMemory2KHR() argument
141 if (GetData(device).hook_extensions[ProcHook::KHR_bind_memory2]) { in checkedBindImageMemory2KHR()
142 return BindImageMemory2KHR(device, bindInfoCount, pBindInfos); in checkedBindImageMemory2KHR()
144 …Logger(device).Err(device, "VK_KHR_bind_memory2 not enabled. vkBindImageMemory2KHR not executed."); in checkedBindImageMemory2KHR()