Tagged Questions

3
votes
4answers
107 views

Multiple meshes in one vertex buffer?

Do I need to use one vertex buffer per mesh, or can I store multiple meshes in one vertex buffer? If so, should I do it, and how would I do it?
0
votes
1answer
155 views

Rendering different triangle types and triangle fans using vertex buffer objects? (OpenGL)

Hello, About half of my meshes are using triangles, another half using triangle fans. I'd like to offload these into a vertex buffer object but I'm not quite sure how to do this. …
1
vote
2answers
125 views

How many vertices per second can the average graphics card push? [closed]

How many vertices can your run of the mill $100 gfx card push these days?
2
votes
6answers
1k views

When are VBOs faster than “simple” OpenGL primitives (glBegin())?

After many years of hearing about Vertex Buffer Objects (VBOs), I finally decided to experiment with them (my stuff isn't normally performance critical, obviously...) I'll describ …
0
votes
2answers
158 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 both …
1
vote
1answer
852 views

openGL glDrawElements with interleaved buffers

Thus far i have only used glDrawArrays and would like to move over to using an index buffer and indexed triangles. I am drawing a somewhat complicated object with texture coords, n …
0
votes
2answers
353 views

Texturing Vertex Buffer Objects

What I want to do is drawing a (large) terrain with OpenGL. So I have a set of vertices, lets say 256 x 256 which I store in a vertex buffer object in the VRAM. I properly triangul …
0
votes
1answer
122 views

OpenGL vertex layout

The problem goes like this: if I have a vertex structure defined with only the position (3 floats), with a total size of 12 bytes, things work perfectly. However, if I try to use u …