Searched refs:DispatchableHandle (Results 1 – 6 of 6) sorted by relevance
/third_party/vulkan-loader/tests/ |
D | loader_unknown_ext_tests.cpp | 901 template <typename DispatchableHandle> 903 …static VKAPI_ATTR uint32_t VKAPI_CALL implementation(DispatchableHandle handle, uint32_t a, uint32… in implementation() 906 …static VKAPI_ATTR uint32_t VKAPI_CALL intercept(DispatchableHandle handle, uint32_t a, uint32_t b)… in intercept() 914 …static void check(VulkanFunctions const& loader, ParentType parent, DispatchableHandle dispatch_ty… in check() 921 …o_implementation(VulkanFunctions const& loader, ParentType parent, DispatchableHandle dispatch_typ… in check_no_implementation() 929 template <typename DispatchableHandle> 931 …static VKAPI_ATTR uint32_t VKAPI_CALL implementation(DispatchableHandle handle, uint32_t a, uint32… in implementation() 936 …static VKAPI_ATTR uint32_t VKAPI_CALL intercept(DispatchableHandle handle, uint32_t a, uint32_t b,… in intercept() 944 …static void check(VulkanFunctions const& loader, ParentType parent, DispatchableHandle dispatch_ty… in check() 952 …o_implementation(VulkanFunctions const& loader, ParentType parent, DispatchableHandle dispatch_typ… in check_no_implementation() [all …]
|
/third_party/vulkan-loader/tests/framework/icd/ |
D | test_icd.h | 77 DispatchableHandle<VkInstance> instance_handle; 78 std::vector<DispatchableHandle<VkDevice>> device_handles; 94 std::vector<DispatchableHandle<VkCommandBuffer>> allocated_command_buffers;
|
D | physical_device.h | 39 DispatchableHandle<VkPhysicalDevice> vk_physical_device; 70 std::vector<DispatchableHandle<VkQueue>> queue_handles;
|
D | test_icd.cpp | 366 auto device_handle = DispatchableHandle<VkDevice>(); in test_vkCreateDevice()
|
/third_party/vulkan-loader/tests/framework/ |
D | test_util.h | 368 struct FRAMEWORK_EXPORT DispatchableHandle { struct 369 DispatchableHandle() { in DispatchableHandle() argument 374 ~DispatchableHandle() { in ~DispatchableHandle() argument 378 DispatchableHandle(DispatchableHandle const&) = delete; 379 DispatchableHandle& operator=(DispatchableHandle const&) = delete; argument 380 …DispatchableHandle(DispatchableHandle&& other) noexcept : handle(other.handle) { other.handle = nu… in DispatchableHandle() argument 381 DispatchableHandle& operator=(DispatchableHandle&& other) noexcept {
|
D | README.md | 146 * DispatchableHandle - helper class for managing the creation and freeing of dispatchable handles
|