DrawElements() 공개 메소드

public DrawElements ( BeginMode mode, int count, DrawElementType type, IntPtr indices ) : void
mode BeginMode
count int
type DrawElementType
indices System.IntPtr
리턴 void
예제 #1
0
 protected override void RenderContent(GraphicsInterface gi)
 {
     gi.DrawElements(fMode, indices.Length, DrawElementType.UnsignedInt, Indices);
 }
예제 #2
0
 protected override void RenderContent(GraphicsInterface gi)
 {
     gi.DrawElements(fDrawingPrimitive, fNumberOfIndices, DrawElementType.UnsignedInt, IntPtr.Zero);
 }