Tagged Questions

2
votes
1answer
1k views

XNA - Using Dynamic Vertex Buffer and only four(4) vertices

Just a quick question on drawing quads. I'm currently using: GraphicsDevice.DrawPrimitives(PrimitiveType primitiveType, int startVertex, int primitiveCount); This draws my ...
0
votes
2answers
97 views

Beginners question about VertexBuffers

I'm looking at XNA for the first time in my life, and I am puzzled by the examples I read. They contain a duplication I don't understand: protected override void LoadContent() { ...
0
votes
1answer
652 views

Using DynamicVertexBuffer in XNA 4.0

I read about DynamicVertexBuffer, and how it's supposed to be better for data that changes often. I have a world built up by cubes, and I need to store the cubes' vertices in this buffer to draw them ...
0
votes
2answers
579 views

XNA/DirectX: Should you always use indices?

I'm implementing billboards for vegetation where a billboard is of course a single quad consisting of two triangles. The vertex data is stored in a vertex buffer, but should I bother with indices? I ...