task that renders a single screen tile */
| 339 | |
| 340 | /* task that renders a single screen tile */ |
| 341 | void renderTileTask (int taskIndex, int threadIndex, int* pixels, |
| 342 | const unsigned int width, |
| 343 | const unsigned int height, |
| 344 | const float time, |
| 345 | const ISPCCamera& camera, |
| 346 | const int numTilesX, |
| 347 | const int numTilesY) |
| 348 | { |
| 349 | renderTileStandard(taskIndex,threadIndex,pixels,width,height,time,camera,numTilesX,numTilesY); |
| 350 | } |
| 351 | |
| 352 | extern "C" void renderFrameStandard (int* pixels, |
| 353 | const unsigned int width, |
no test coverage detected