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 ...
5
votes
2answers
275 views

OpenGL vertex buffer confusion

Would someone care to explain the difference to be between a VertexBuffer, a VertexArray, a VertexBufferObject, and a VertexArrayObject? I'm not even sure if these are all terms for different things, ...
4
votes
2answers
194 views

Better to create new VBOs or just swap the data? (OpenGL)

So in a OpenGL rendering application, is it usually better to create and maintain a vertex buffer throughout the life of an application and just swap out the data every frame with glBufferData, or is ...
3
votes
1answer
390 views

Problem with degenerate triangles and GL_TRIANGLE_STRIP

I'm trying to draw multiple triangle strips with only one call to glDrawElements and my research on the matter tells me I need to use degenerate triangles. Maybe my understanding on the subject is ...
3
votes
1answer
3k 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, normals and vertex ...
2
votes
2answers
115 views

The classic “nothing is getting rendered” OpenGL problem

I know, it's quite frustrating. I can't get anything to show up in my OpenGL application - all I see is an empty viewport. When I first started writing the application, I was manually drawing the ...
2
votes
2answers
561 views

Code Assist, OpenGL VAO/VBO Classes not drawing

Edit II: Current Code works great! Thanks everyone. I went ahead and included my shader code for reference at the bottom though they do absolutely nothing at this point really. I am trying to ...
2
votes
1answer
451 views

OpenGL Depth Buffer Problem

For my last few projects I have been using some of the utility files that I found whilst looking at a few demos here. Namely a file called opengl.h - mainly used to manage shaders a bit like glew and ...
1
vote
2answers
70 views

Storing per-object data for fragment shader

I have a fragment shader that uses a few uniforms which are set on a per-object basis. Is there a way to store these uniforms on the graphics card somehow? I've heard of (but cannot find a tutorial ...
1
vote
1answer
207 views

OpenGL Vertex buffer object, can I access the vertex data for other uses such as collision detection?

I'm currently using the GLTools classes that come along with the Superbible 5th edition. I'm looking in the GLTriangleBatch class and it has the following code: // Create the master vertex array ...
1
vote
1answer
155 views

Uploading Vertex and Index buffer to the GPU

I am creating a terrain engine and currently I am uploading the whole terrain VB (Vertex Buffer) and IB (Index Buffer) to the GPU at once since the terrain is not huge. It's 256x256 at the moment. ...
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
575 views

OpenGL: problem with vertex indices buffer

I just started using VBOs, and everything seems to be fine except for the vertex indices buffer. If I call glDrawElements after enabling the indices buffer I get an access violation error (can't find ...
1
vote
3answers
1k views

OpenGL 3.x: Access violation when using vertex buffer object and glDrawElements(…)

I have trouble rendering some geometry by using a vertex buffer object. I intend to draw a plane of points, so basically one vertex at every discrete position in my space. However, I cannot render ...
1
vote
1answer
213 views

Using Vertex Buffer Objects with C++ OpenGL

I am working on a 3d tile-based strategy game and have read that implementing VBO's will significantly increase the game's frame rate and reduce the cpu usage (sounds great right?). However, among ...
1
vote
1answer
312 views

How to 'bind' a element buffer array to vertex array object using direct state access?

The title says it all. For the other buffers there are functions like: glVertexArrayVertexAttribOffsetEXT( this->handle, // vao handle vbo.getHandle(), // vbo ...
1
vote
1answer
364 views

Using OpenGL vertex buffers in C++

I've loaded a Wavefront .obj file and drawn it in immediate mode, and it works fine. I'm now trying to draw the same model with a vertex buffer, but I have a question. My model data is organized in ...
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
1answer
355 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 unsigned bytes or ...
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
1answer
183 views

MonoTouch / OpenGL ES: Exception when drawing with GL.DrawElements

i try to draw a mesh with Ope When calling GL.DrawElements i got the following exception. Stacktrace: at (wrapper managed-to-native) ...
0
votes
1answer
315 views

OpenGL Vertex Buffer not drawing (LWJGL)

I've been trying to implement a better way of drawing stuff, and tried using Vertex Buffers. Now, I've been following the Tutorial from the LWJGL Wiki ([Using Vertex Buffer Objects (VBO)]: ...
0
votes
4answers
161 views

Vertex Buffer Objects with SDL

When using SDL 1.2, what do I need to include to be able to use OpenGL Vertex Buffer Objects (VBOs)? Currently, I only include SDL.h, SDL_opengl.h, SDL_image.h And get the errors: glGenBuffersARB, ...
0
votes
1answer
167 views

openGL glUnmapBuffer() returning unknown error code 1280

I am writing some proof-of-concept code. I want to prove that I can write data to a buffer object after the buffer has been created. However, I am getting a a GLenum error code of 1280 when I try to ...
0
votes
2answers
95 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 ...
0
votes
2answers
147 views

How do I fix the following gcc warnings?

I've started learning OpenGL and managed to create a spinning cube using vertex buffer objects. However, when I compile my code, gcc issues the following warnings: || sdlogl.c: In function ‘initGL’: ...
0
votes
1answer
601 views

Hard time understanding indices with glDrawElements

I'm trying to draw a terrain with GL_TRIANGLE_STRIP and glDrawElements but I'm having a really hard time understanding the indices thing behind glDrawElements... Here's what I have so far: void ...
0
votes
2answers
287 views

Vertex Buffer Objects Open GL

I am really new to Open GL and I am trying to build non deprecated code. Now what I can't grasp is VBO. This is all I got so far, can you please explain what I'm supposed to be doing. Also, I have the ...
0
votes
2answers
467 views

Texturing VBOs (Vertext Buffer Objects)

I'm currently working on a procedural planet generation tool that works by taking a cube, mapping it to a sphere and then applying a heightmap to each face to generate terrain. I'm using a VBO for ...
0
votes
1answer
959 views

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

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. The triangle fans all have ...