If I dispatch 3 different kernels on the same compute shader like this:
_computeShader.Dispatch(kernel1, x, y, z);
_computeShader.Dispatch(kernel2, x, y, z);
_computeShader.Dispatch(kernel3, x, y, z);
will they run in the order they are called?
↧