| 168 | } |
| 169 | |
| 170 | vulkan_function::vulkan_function(const std::string_view function_name_, function_map_type&& functions_) : |
| 171 | device_function(function_name_), functions(std::move(functions_)) { |
| 172 | } |
| 173 | |
| 174 | typename vulkan_function::function_map_type::iterator vulkan_function::get_function(const device_queue& cqueue) const { |
| 175 | return functions.find((const vulkan_device*)&cqueue.get_device()); |
nothing calls this directly
no outgoing calls
no test coverage detected