Fusion.Drivers.Graphics.GraphicsDevice.Dispatch C# (CSharp) Method

Dispatch() public method

public Dispatch ( int threadGroupCountX, int threadGroupCountY = 1, int threadGroupCountZ = 1 ) : void
threadGroupCountX int
threadGroupCountY int
threadGroupCountZ int
return void
		public void Dispatch( int threadGroupCountX, int threadGroupCountY = 1, int threadGroupCountZ = 1 )
		{
			lock (deviceContext) {
				ApplyGpuState();
				deviceContext.Dispatch( threadGroupCountX, threadGroupCountY, threadGroupCountZ ); 
			}
		}