| 2728 | } |
| 2729 | |
| 2730 | shared_ptr<compute_program> vulkan_compute::add_program_source(const string& source_code, |
| 2731 | const string additional_options) { |
| 2732 | compile_options options { .cli = additional_options }; |
| 2733 | return add_program_source(source_code, options); |
| 2734 | } |
| 2735 | |
| 2736 | shared_ptr<compute_program> vulkan_compute::add_program_source(const string& source_code, |
| 2737 | compile_options options) { |
nothing calls this directly
no test coverage detected