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

Draw() 공개 메소드

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