| 41 | } |
| 42 | |
| 43 | void TaskError::update(const vec2i &task, const float err) |
| 44 | { |
| 45 | if (taskErrorBuffer) { |
| 46 | (*taskErrorBuffer)[task.y * numTasks.x + task.x] = err; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | float TaskError::refine(const float errorThreshold) |
| 51 | { |
no outgoing calls
no test coverage detected