Fusion.Drivers.Graphics.GraphicsDevice.Dispatch C# (CSharp) Méthode

Dispatch() public méthode

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