added commas, added multi-dimensional tasking to mandelbrot_tasks & removed mandelbrot_task3d. Also adjusted documentaiton a bit

This commit is contained in:
evghenii
2013-12-13 11:49:11 +01:00
parent 2951cad365
commit c06ec92d0d
13 changed files with 28 additions and 518 deletions

View File

@@ -204,7 +204,7 @@ struct TaskInfo {
// ispc expects these functions to have C linkage / not be mangled
extern "C" {
void ISPCLaunch(void **handlePtr, void *f, void *data, int countx,int county, int countz);
void ISPCLaunch(void **handlePtr, void *f, void *data, int countx, int county, int countz);
void *ISPCAlloc(void **handlePtr, int64_t size, int32_t alignment);
void ISPCSync(void *handle);
}