Tagged Questions
8
votes
6answers
5k 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 describe my experiment ...
3
votes
1answer
1k views
Problem when trying to use simple Shaders + VBOs
Hello I'm trying to convert the following functions to a VBO based function for learning purposes, it displays a static texture on screen. I'm using OpenGL ES 2.0 with shaders on the iPhone (should be ...
2
votes
2answers
65 views
Drawing with Vertex Buffer Objects in OpenGL ES 1.1 not working
I have my OpenGL code working but I am trying to improve its performance a bit (would like to bump up the frame-rate a bit on older devices). I am trying to do this using a Vertex Buffer Object.
All ...
1
vote
1answer
201 views
Drawing using Vertex Buffer Objects in OpenGL ES 1.1 vs ES 2.0
i am new to openGL. Iam using apple documentation as my major referens
...
1
vote
1answer
668 views
OpenGL ES 2.0 and vertex buffer objects (VBO)
I can't figure out how to use a vertex buffer object for my terrain in opengl es 2.0 for iphone. It's static data so I'm hoping for a speed boost by using VBO. In regular OpenGL, I use display lists ...
1
vote
1answer
333 views
How to call glDrawElements with static TexCoords and Dynamic Vertices
I'm using the glDrawElements call with VBOs to render my scene. The scene is a cloth with vertices and texture coordinates - in this example, I'm rendering a flag.
With my scene, the vertices are ...
1
vote
2answers
142 views
How do I get the length of a VBO to render all vertices when using glDrawArrays()?
I create a VBO in a function and I only want to return the VBO id.
I use glDrawArrays in another function and I want it to draw all the vertices in the VBO without needing to also pass the number of ...
1
vote
2answers
1k 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 triangulated them, so I've ...
0
votes
2answers
94 views
Unable to display VBO in OpenGL
I have a VBO and an IBO in OpenGL, but am unable to draw them properly. Could you please let me know what I could have forgotten in the frame display function ?
- struct Point3D is a struct with 3 ...