Tagged Questions

A Vertex Buffer Object (VBO) is an OpenGL extension that provides methods for uploading data (vertex, normal vector, color, etc.) to the video device for non-immediate-mode rendering.

learn more… | top users | synonyms

9
votes
1answer
337 views

OpenGL - Will using multiple VBO's slow down rendering?

I am rendering some meshes (sometimes upwards of 500) and I wanted to know the best way to approach this. Would it be pointless to create 500 VBOs and then if they pass the frustum and visibility ...
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 ...
7
votes
1answer
423 views

Rendering Kinect Point Cloud with Vertex Buffer Object (VBO)

I´m trying to make a dynamic point cloud visualizer. The points are updated every frame with Kinect Sensor. To grab the frames I´m using OpenCV and GLUT to display. The OpenCV API returns a 640 x 480 ...
6
votes
1answer
64 views

What happens if I fail to delete a Vertex Buffer Object when my program quits?

In all the documents and tutorials I've read about Vertex Buffer Objects they all make a point of mentioning that you must delete you VBO before an application quits. In the case that a program ...
5
votes
2answers
227 views

Use index as coordinate in OpenGL

I want to implement a timeseries viewer that allows a user to zoom and smoothly pan. I've done some immediate mode opengl before, but that's now deprecated in favor of VBOs. All the examples of VBOs ...
5
votes
2answers
821 views

OpenGL VBO updating data

I have to draw a buffer that holds a couple thousand vertices. I am using a vbo to store the data. I know I will have to update the VBO many times - but only in small parts at a time. So I am ...
5
votes
2answers
1k views

OpenGL fast texture drawing with vertex buffer objects. Is this the way to do it?

I am making a 2D game with OpenGL. I would like to speed up my texture drawing by using VBOs. Currently I am using the immediate mode. I am generating my own coordinates when I rotate and scale a ...
4
votes
3answers
105 views

Modern OpenGL: VBO, GLM and Matrix Stacks

After searching and reading about Modern OpenGL in order to upgrade my existing project, I'm a bit confused, since I glBegin/glEnd for ages and my 3D framework based on OpenGL 2.1. so, as far as I ...
4
votes
1answer
86 views

OpenGL: VBO functions are not defined

I'm trying to use OpenGL VBO's, but the functions associated with their use, glGenBuffersARB() for instance, are all undefined. Immediate mode functions are fine of course, it's only these. I'm ...
4
votes
1answer
116 views

Is it possible to persistently change the values of a VBO on the iPhone OpenGL ES 2.0 inside a vertex shader?

I am an Opengl ES 2.0 newbie (and GLSL newbie) so forgive me if this is an obvious question. If I have a VBO that I initialize once on the CPU at the start of my program is it possible to then use ...
4
votes
1answer
421 views

Drawing VBO with glDrawArrays works in OpenGL 2.1 but not in OpenGL 3.x

The core of code (displaying red rectangle): //bind program, set uniforms, bind vbo glEnableVertexAttribArray(0); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 0,0); glDrawArrays(GL_TRIANGLES, 0, ...
4
votes
1answer
580 views

Strategy for sharing OpenGL resources

I'm creating a CAD-like app (Qt-based), it will be a multiple document interface and each document will contain about 5 viewports (derived from QGLWidget). As such I need my flat shader to be shared ...
4
votes
2answers
4k views

OpenGL: efficient way to render a batch of geometry?

This is something I've been looking into for while, but I have yet to find any concrete information or good examples. I have, say, a bunch of unconnected objects (triangle strips for instance). What ...
3
votes
3answers
119 views

OpenGLES 2.0 separate buffers for vertices, colors and texture coordinates

I've been learning OpenGL for a few days now by following some tutorials and coding some experiments of my own. But there is one thing I really don't understand which blocks me from continuing. I've ...
3
votes
2answers
78 views

Using glMultiDrawElements in 64bit OS

I have recently migrated from a 32bit environment to a 64bit one, and it has gone smoothly apart from one problem: glMultiDrawElements uses some arrays that do not work without some tweaking under a ...
3
votes
2answers
281 views

Binding to OpenGL 3.x VBO

I'm trying to update my engine that used to use OpenGL 2.x style vertex arrays to work with OpenGL 3.x, which means updating to VAOs/VBOs. I think I'm not binding to VBO's properly. Read below for ...
3
votes
1answer
478 views

OpenGL ES 2.0 : Seeking VBO Performance/Optimisation Tips For Many Moving Vertices

In my ongoing attempt to convert to OpenGL ES 2.0 from ES 1.x I'm currently converting some code to use Vertex Buffer Objects ('VBOs') rather than the existing unbuffered glDrawArrays calls. I've set ...
3
votes
1answer
437 views

Using Vertex Buffer Objects (VBO) in OpenGL es (Iphone) to improve performance

i am writing a simple application for iphone wich displays a rotating cube. I am using glDrawElements (openGl es) to draw the triangles of the cube and to rotate it. I've noticed that when i increase ...
3
votes
2answers
297 views

VBOs with std::vector

I've written a model loader in C++ an OpenGL. I've used std::vectors to store my vertex data, but now I want to pass it to glBufferData(), however the data types are wildly different. I want to know ...
3
votes
3answers
163 views

Problems using VBOs to render vertices - OpenGL

I am transferring over my vertex arrays functions to VBOs to increase the speed of my application. Here was my original working vertex array rendering function: void BSP::render() { ...
3
votes
2answers
132 views

Vertex Buffer Objects in OpenGL 2.1

(I specified 2.1 because my laptop won't go past that version. I would have probably done this anyway since 3.x and on introduces shaders as mandatory?). Thanks to Wikipedia: ...
3
votes
1answer
340 views

glBufferSubData performances abysmal on iOS?

I can't quite grasp why this code is slow for the GPU on iOS, this code works great on Windows without any problems. Basically what I'm doing is that I have one big dynamic vertex buffer ...
3
votes
2answers
448 views

OpenGL: Draw lines with VBO

How to draw several separate lines using a single VBO?
3
votes
1answer
356 views

Rendering multiple VBOs in one draw call in OpenGL

I have a few hundred VBOs. I want to only draw a subset of the VBOs each frame. Is there anything faster than binding and drawing each VBO? Is there a batched draw command for multiple VBOs? How ...
3
votes
1answer
163 views

How to load a model once and reuse it in OpenGL

I've loaded a wavefront model file (.OBJ and .MTL) and stored the vertices/indices in a VBO for rendering. Now I only populate the VBO once when the model is loaded. My question is... What is the best ...
3
votes
2answers
217 views

Does interleaving in VBOs help or hinder proformance?

When using OpenGL VBOs you can interleave your data You can even interleave vertex data with other data that is for use by the CPU rather than GPU, for example. Does interleaving help or hinder ...
3
votes
2answers
1k views

OpenGL: How to design efficient rendering system using vertex arrays with depth sorting?

People constantly tell me to use at least Vertex Arrays. But i think its not a good idea since i'm using glPushMatrix() with glTranslatef/glRotatef to position an object in the 3d world. So, should i ...
3
votes
2answers
850 views

Is using Vertex Buffer Object's for very dynamic data a good idea performance-wise?

I have many particles who's vertices change every frame. The vertices are currently being drawn using a vertex array in 'client' memory. What performance characteristics can I expect if I use a ...
3
votes
1answer
755 views

Dynamic VBO in OpenGL

What is the best way to store dynamic data for use in VBO (or vertex arrays). Only examples I saw were 2D static arrays and the pointer to that array was used with next parameters as stride, bytes ...
3
votes
6answers
1k views

OpenGl VBO technicalities in C++

I'm a little confused as to the proper usage of VBOs in an OpenGL program. I want to create a terrain paging algorithm, using a map called from a 4096x4096 greyscale heightmap as the "whole" map. ...
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 ...
3
votes
3answers
3k views

Problem mapping textures to VBO in OpenGL

I'm having trouble getting a texture to map onto geometry properly with OpenGL. In fact I seem to have even broken the colour interpolation that used to work fine. I've created a test case in C99 that ...
2
votes
1answer
79 views

OpenGL structure of VAO/VBO for model with moving parts?

I came from this question: opengl vbo advice I use OpenGL 3.3 and will not to use deprecated features. Im using Assimp to import my blender models. But im a bit confused as to how much i should ...
2
votes
2answers
64 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 ...
2
votes
1answer
61 views

OpenGL 2.1: Rebuffering sub-region in VBO

I have a terrain mesh stored in a VBO. The mesh is a grid composed of right triangles. In other words, it looks like a rectilinear grid with diagonals. The width and height of the mesh are known, so ...
2
votes
4answers
171 views

Android / Java GLES20 resources

I'm looking for a simple sample Android app, which uses GLES20 (OpenGL ES 2.0) and - here's the important part - Vertex Buffer Objects (VBOs) to render geometry. Does anybody have a link to such a ...
2
votes
3answers
197 views

Error when trying to use VBO “array vertex_buffer_object must be disabled to call this method”

EDIT I have effectivley re-wrote this question in order to greatly imrpove its quality - see revision logs if you must I have narrowed down my problem to the initialisation phase of my program, when ...
2
votes
2answers
86 views

Need some help implementing VBOs with Frustum Culling

i'm currently developing my first 3D game for a school project, the game world is completely inspired by minecraft (world completely made out of cubes). I'm currently seeking to improve the ...
2
votes
2answers
83 views

glBufferDataARB or glBufferSubDataARB?

I am developing a tile-based physics game like Falling Sand Game. I am currently using a Static VBO for the vertices and a Dynamic VBO for the colors associated with each block type. With this type of ...
2
votes
3answers
174 views

Learning to use VBOs properly

So I've been trying to teach myself to use VBOs, in order to boost the performance of my OpenGL project and learn more advanced stuff than fixed-function rendering. But I haven't found much in the ...
2
votes
1answer
128 views

how to use VBO for morphing?

I want to have a mesh that can be animated. I'm loading mesh from a file, including key frames. I want to put all the frames into VBO and compose two of them on the GPU in a vertex shader. So i want ...
2
votes
1answer
165 views

Efficient VBO allocation in WebGL

I'm writing a WebGL application that algorithmically generates geometry. The geometry will consist of between 4-150 objects, each consisting of somewhere between 16 and 2048 points, drawn as a ...
2
votes
1answer
488 views

OpenGL ES 2.0: The most efficient setup for a VBO with GL_STREAM_DRAW?

I'm using a Vertex Buffer Object (VBO) in OpenGL ES 2.0. I have a set of vertex data which is permanently stored in normal RAM. The reason is that calculating the vertex positions from scratch is ...
2
votes
1answer
332 views

Why isn't this OpenGL ES 2.0 shader working with my VBO on iOS?

If anyone can shed light on what's going wrong here, perhaps a misordering of gl commands or some other incompatible command sequence, I would be tremendously grateful for your assistance. I have been ...
2
votes
2answers
111 views

How can I map the elements to colors in OpenGL VBO?

I'm creating an app using VBO to render some objects with difficult color structure. I noticed, that VBO defines the color of the element equal to last vertex index in the element buffer. For example, ...
2
votes
4answers
124 views

Possible Memory Leak with JOGL using VBOs

We are currently developing an application which visualizes huge vector fields (> 250'000) on a sphere/plane in 4D. To speed up the process we are using VBOs for the vertices, normals and colors. To ...
2
votes
2answers
1k views

VBO glDrawElements and glVertexAttribPointer on GLES2.0 displays nothing

I can display a texture using shaders, glVertexAttribPointer and glDrawArrays like so: Init const GLfloat squareVertices[] = { -0.5f, -0.33f, 0.5f, -0.33f, -0.5f, 0.33f, 0.5f, ...
2
votes
1answer
84 views

Getting KERN-EXEC 3 while loading 3D object through VBO method in Symbian^3, why?

I am currently getting KERN-EXEC 3 error when I click my app icon. Actually I am loading a 3D object through VBO method in Symbian^3. Meanwhile, I am not getting this error when I load relatively ...
2
votes
2answers
113 views

Modifying only a specific element type of VBO buffer data?

I have my VBO using single buffer at the moment, it has vertex, texcoord and color elements. Now, is it possible to update efficiently only the texcoords without updating the vertex/color as well? It ...
2
votes
1answer
194 views

VBOs Using Interleaved Vertices in C#

I am trying to use VBOs to draw my model in in C# using OpenTK. In my online research I read in many places that it is good practice to make the size of the interleaved data structure an exact ...

1 2 3 4