Hi there,
Noob here so hoping to get information from experienced folks…
I used to have methods like these as inline,however with burst compile, what should i do? remove inline or keep both or whats the right way when im using these methods in both job and non job ways…
[MethodImpl(MethodImplOptions.AggressiveInlining), BurstCompile]
public static int Calculate1DIndex(in int currentRow_or_y, in int currentColumn_or_x, in int columns_or_width)
{
return currentColumn_or_x + currentRow_or_y * columns_or_width;
}