task that renders a single screen tile */
| 242 | |
| 243 | /* task that renders a single screen tile */ |
| 244 | void renderTileTask (int taskIndex, int threadIndex, int* pixels, |
| 245 | const unsigned int width, |
| 246 | const unsigned int height, |
| 247 | const float time, |
| 248 | const ISPCCamera& camera, |
| 249 | const int numTilesX, |
| 250 | const int numTilesY) |
| 251 | { |
| 252 | renderTileStandard(taskIndex,threadIndex,pixels,width,height,time,camera,numTilesX,numTilesY); |
| 253 | } |
| 254 | |
| 255 | /* animates a sphere */ |
| 256 | void animateSphere (int id, float time) |
no test coverage detected