| 502 | #endif |
| 503 | |
| 504 | void luxcore::KernelCacheFill(const Properties &config, void (*ProgressHandler)(const size_t, const size_t)) { |
| 505 | #if !defined(LUXRAYS_DISABLE_OPENCL) |
| 506 | const size_t count = KernelCacheFillImpl(config, false, 0, NULL); |
| 507 | |
| 508 | KernelCacheFillImpl(config, true, count, ProgressHandler); |
| 509 | #endif |
| 510 | } |
nothing calls this directly
no test coverage detected