task that renders a single screen tile */
| 448 | |
| 449 | /* task that renders a single screen tile */ |
| 450 | void renderTileTask (int taskIndex, int threadIndex, int* pixels, |
| 451 | const unsigned int width, |
| 452 | const unsigned int height, |
| 453 | const float time, |
| 454 | const ISPCCamera& camera, |
| 455 | const int numTilesX, |
| 456 | const int numTilesY) |
| 457 | { |
| 458 | renderTileStandard(taskIndex,threadIndex,pixels,width,height,time,camera,numTilesX,numTilesY); |
| 459 | } |
| 460 | |
| 461 | /* called by the C++ code for initialization */ |
| 462 | extern "C" void device_init (const char* cfg) |
no test coverage detected