| 21 | } |
| 22 | |
| 23 | devicert::AsyncEvent LiveVarianceFrameOp::process() |
| 24 | { |
| 25 | // Run kernel |
| 26 | const vec2ui &itemDims = getSh()->super.viewDims; |
| 27 | firstRun = false; |
| 28 | return device.launchFrameOpKernel( |
| 29 | itemDims, ispc::Variance_kernelLauncher, &getSh()->super); |
| 30 | } |
| 31 | |
| 32 | float LiveVarianceFrameOp::getAvgError(const float errorThreshold) const |
| 33 | { |
nothing calls this directly
no test coverage detected