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

Draw() public method

Draws primitives.
public Draw ( int vertexCount, int firstIndex ) : void
vertexCount int
firstIndex int
return void
		public void Draw ( int vertexCount, int firstIndex )
		{					
			lock (deviceContext) {
				ApplyGpuState();
				//deviceContext.InputAssembler.PrimitiveTopology	=	Converter.Convert( primitive );
				deviceContext.Draw( vertexCount, firstIndex );
			}
		}