| 2709 | } |
| 2710 | |
| 2711 | shared_ptr<compute_program> vulkan_compute::add_program_file(const string& file_name, |
| 2712 | const string additional_options) { |
| 2713 | compile_options options { .cli = additional_options }; |
| 2714 | return add_program_file(file_name, options); |
| 2715 | } |
| 2716 | |
| 2717 | shared_ptr<compute_program> vulkan_compute::add_program_file(const string& file_name, |
| 2718 | compile_options options) { |
nothing calls this directly
no test coverage detected