task that renders a single screen tile */
| 852 | |
| 853 | /* task that renders a single screen tile */ |
| 854 | void renderTileTask (int taskIndex, int threadIndex, int* pixels, |
| 855 | const unsigned int width, |
| 856 | const unsigned int height, |
| 857 | const float time, |
| 858 | const ISPCCamera& camera, |
| 859 | const int numTilesX, |
| 860 | const int numTilesY) |
| 861 | { |
| 862 | renderTileStandard(taskIndex,threadIndex,pixels,width,height,time,camera,numTilesX,numTilesY); |
| 863 | } |
| 864 | |
| 865 | extern "C" void renderFrameStandard (int* pixels, |
| 866 | const unsigned int width, |
no test coverage detected