[][src]Type Definition ispc::task::ISPCTaskFn

type ISPCTaskFn = extern "C" fn(*mut c_void, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32);

A pointer to an ISPC task function.

The ISPC task function pointer is:

void (*TaskFuncPtr)(void *data, int threadIndex, int threadCount,
                    int taskIndex, int taskCount,
                    int taskIndex0, int taskIndex1, int taskIndex2,
                    int taskCount0, int taskCount1, int taskCount2);