task that renders a single screen tile */
| 215 | |
| 216 | /* task that renders a single screen tile */ |
| 217 | void renderTileTask (int taskIndex, int threadIndex, int* pixels, |
| 218 | const unsigned int width, |
| 219 | const unsigned int height, |
| 220 | const float time, |
| 221 | const ISPCCamera& camera, |
| 222 | const int numTilesX, |
| 223 | const int numTilesY) |
| 224 | { |
| 225 | renderTileStandard(taskIndex,threadIndex,pixels,width,height,time,camera,numTilesX,numTilesY); |
| 226 | } |
| 227 | |
| 228 | void splat_color(int* pixels, |
| 229 | unsigned int width, |
no test coverage detected