| 76 | } |
| 77 | |
| 78 | void ResourceImpl::clear_sinks() |
| 79 | { |
| 80 | MaaResourceClearSinks(resource); |
| 81 | for (const auto& [_, ctx] : sinks) { |
| 82 | delete ctx; |
| 83 | } |
| 84 | sinks.clear(); |
| 85 | } |
| 86 | |
| 87 | void ResourceImpl::set_inference_device(std::variant<std::string, int32_t> id) |
| 88 | { |
nothing calls this directly
no test coverage detected