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

DrawIndexed() 공개 메소드

public DrawIndexed ( int indexCount, int firstIndex, int baseVertexOffset ) : void
indexCount int
firstIndex int
baseVertexOffset int
리턴 void
		public void DrawIndexed ( int indexCount, int firstIndex, int baseVertexOffset )
		{
			lock (deviceContext) {
				ApplyGpuState();
				//deviceContext.InputAssembler.PrimitiveTopology	=	Converter.Convert( primitive );
				deviceContext.DrawIndexed( indexCount, firstIndex,	baseVertexOffset );
			}
		}