| 572 | } |
| 573 | |
| 574 | const device_function::function_entry* vulkan_function::get_function_entry(const device& dev) const { |
| 575 | if (const auto iter = functions.find((const vulkan_device*)&dev); iter != functions.end()) { |
| 576 | return iter->second.get(); |
| 577 | } |
| 578 | return nullptr; |
| 579 | } |
| 580 | |
| 581 | std::unique_ptr<argument_buffer> vulkan_function::create_argument_buffer_internal(const device_queue& cqueue, |
| 582 | const function_entry& kern_entry, |
no test coverage detected