Fusion.Drivers.Graphics.GraphicsDevice.Dispatch C# (CSharp) 메소드

Dispatch() 공개 메소드

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