C# Класс StarWarrior.Primitives.PrimitiveBatch

Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AddVertex ( Vector2 vertex, Color color ) : void

The add vertex is called to add another vertex to be rendered. To draw a point, AddVertex must be called once. For lines, twice, and for triangles 3 times. This method can only be called once begin has been called. If there is not enough room in the vertices buffer, Flush is called automatically.

Begin ( PrimitiveType primitiveType ) : void

The begin.

Dispose ( ) : void

The dispose.

End ( ) : void

The end is called once all the primitives have been drawn using AddVertex. It will call Flush to actually submit the draw call to the graphics card, and then tell the basic effect to end.

PrimitiveBatch ( GraphicsDevice graphicsDevice ) : System

Initializes a new instance of the PrimitiveBatch class.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

The dispose.

Приватные методы

Метод Описание
Flush ( ) : void

The flush is called to issue the draw call to the graphics card. Once the draw call is made, positionInBuffer is reset, so that AddVertex can start over at the beginning. End will call this to draw the primitives that the user requested, and AddVertex will call this if there is not enough room in the buffer.

GetNumberOfVerticesPerPrimitive ( PrimitiveType primitive ) : int

Gets the number of vertices per primitive.

Описание методов

AddVertex() публичный Метод

The add vertex is called to add another vertex to be rendered. To draw a point, AddVertex must be called once. For lines, twice, and for triangles 3 times. This method can only be called once begin has been called. If there is not enough room in the vertices buffer, Flush is called automatically.
Begin must be called before AddVertex can be called.
public AddVertex ( Vector2 vertex, Color color ) : void
vertex Vector2 The vertex.
color Color The color.
Результат void

Begin() публичный Метод

The begin.
End must be called before Begin can be called again. The specified primitiveType is not supported by PrimitiveBatch.
public Begin ( PrimitiveType primitiveType ) : void
primitiveType PrimitiveType The primitive type.
Результат void

Dispose() публичный Метод

The dispose.
public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

The dispose.
protected Dispose ( bool disposing ) : void
disposing bool The disposing.
Результат void

End() публичный Метод

The end is called once all the primitives have been drawn using AddVertex. It will call Flush to actually submit the draw call to the graphics card, and then tell the basic effect to end.
Begin must be called before End can be called.
public End ( ) : void
Результат void

PrimitiveBatch() публичный Метод

Initializes a new instance of the PrimitiveBatch class.
The graphicsDevice is not initialized.
public PrimitiveBatch ( GraphicsDevice graphicsDevice ) : System
graphicsDevice GraphicsDevice The graphics device.
Результат System