Class JobParallelIndexListExtensions
Inheritance
JobParallelIndexListExtensions
Assembly: Unity.Collections.dll
Syntax
public static class JobParallelIndexListExtensions
Methods
EarlyJobInit<T>()
This method is only to be called by automatically generated setup code.
Declaration
public static void EarlyJobInit<T>() where T : struct, IJobParallelForFilter
Type Parameters
RunAppend<T>(T, NativeList<int>, int)
Declaration
public static void RunAppend<T>(this T jobData, NativeList<int> indices, int arrayLength) where T : struct, IJobParallelForFilter
Parameters
Type Parameters
RunFilter<T>(T, NativeList<int>)
Declaration
public static void RunFilter<T>(this T jobData, NativeList<int> indices) where T : struct, IJobParallelForFilter
Parameters
Type Parameters
ScheduleAppend<T>(T, NativeList<int>, int, int, JobHandle)
Declaration
public static JobHandle ScheduleAppend<T>(this T jobData, NativeList<int> indices, int arrayLength, int innerloopBatchCount, JobHandle dependsOn = default) where T : struct, IJobParallelForFilter
Parameters
Returns
Type Parameters
ScheduleFilter<T>(T, NativeList<int>, int, JobHandle)
Declaration
public static JobHandle ScheduleFilter<T>(this T jobData, NativeList<int> indices, int innerloopBatchCount, JobHandle dependsOn = default) where T : struct, IJobParallelForFilter
Parameters
Returns
Type Parameters