task that renders a single screen tile */
| 652 | |
| 653 | /* task that renders a single screen tile */ |
| 654 | void renderTileTask (int taskIndex, int threadIndex, int* pixels, |
| 655 | const unsigned int width, |
| 656 | const unsigned int height, |
| 657 | const float time, |
| 658 | const ISPCCamera& camera, |
| 659 | const int numTilesX, |
| 660 | const int numTilesY) |
| 661 | { |
| 662 | renderTileStandard(taskIndex,threadIndex,pixels,width,height,time,camera,numTilesX,numTilesY); |
| 663 | } |
| 664 | |
| 665 | extern "C" void renderFrameStandard (int* pixels, |
| 666 | const unsigned int width, |
no test coverage detected