A Buffer Object is an OpenGL object that allows users to store data on the GPU. Vertex Buffer Objects (VBOs) are buffer objects used to store vertex data for non-immediate-mode rendering.

learn more… | top users | synonyms

1
vote
1answer
26 views

Why is my VBO updated on 2nd click?

I have this method (InvertPolygonMesh) which basically takes an array (my VBO) and inverts all vertices along the Z axis. This method is directly invoked by the click of a button (IBAction). Now for ...
0
votes
0answers
4 views

Is it possible to use Display List on top of Vertex Buffer Object?

My openGL story. Started with Intermediate mode. Then jumped to VBOs. Didn't really do any display listing. Just wanted to learn display lists today. So did I understand it correctly: Can I record ...
0
votes
1answer
34 views

OutOfMemoryError issue in Vertex buffer Object (VBO)

I'm facing problem here when moving from VAO to VBO for rendering. I'm using Android platform and using OpenGL API from JNI. Here is my snippet code // Initialize in constructor GLuint buffer[3]; ...
1
vote
1answer
54 views

Rendering from VBO with glDrawElements has a weird result

I just started to implement the librocket (an UI lib that generates mesh from HTML) one requirement is the RenderInterface. The lib basically sends your class that inherits from RenderInterface the ...
1
vote
0answers
21 views

Vertex Buffer Objects in PyOpenGL - vertex, index and colour

OSX 10.8.3, Python, PyOpenGL. I'm trying to put together a basic terrain-drawing function in PyOpenGL using VBOs. Having a couple of problems I don't know how to resolve, mostly because I don't fully ...
0
votes
0answers
7 views

lwjgl multiple index buffer object

I have two separate problems with index buffer objects. Firstly, I am writing a lwjgl program that reads off a .ply file (made in blender) to render an object that I've made in a 3d modelling program, ...
0
votes
3answers
75 views

Sorting submeshes/VBO

I have a level I need to render. It is broken into hundreds of submeshes with information on which submesh can see which submesh. Each level has a pool of textures that all of those submeshes can ...
0
votes
1answer
35 views

“Access Violation Reading Location” with Vertex Buffer

I am trying to convert the following piece of code into one that uses a vertex buffer: glBegin (GL_QUADS); glTexCoord2fv (&_vertex[ci->index_list[7]].uv.x); glVertex3fv ...
0
votes
1answer
49 views

C++ Vertex Buffer Issue

I'm attempting to add a vertex buffer to the Mesh.cpp file of the pixel city procedural city-generating program. Part of the current code looks like this: for (qsi = _quad_strip.begin(); qsi < ...
0
votes
2answers
35 views

VAO problems with bind

Help to find the error. I suppose it is wrong to bind. In "display" I used VBO - all works fine. But when I used VAO - i get black screen. void createVAO(GLuint *_vId, GLuint *_cId, GLuint *_tId, ...
-1
votes
0answers
14 views

Using multiple textures in a vertex buffer array [closed]

I am trying to render a VBO with multiple textures, is this possible?
1
vote
1answer
43 views

Why use VBO's and/or IBO's as opposed to just simple Vertex Data?

So what's the benefit to using VBO's (Vertex Buffer Objects) and IBO's (Index Buffer Objects) as opposed to using simple Vertex Data? When is a good time to use them? Would it be more complicated to ...
0
votes
0answers
22 views

JOGL: array vertex_buffer_object must be enabled to call this method

So I'm pretty new to JOGL and VBOs. I'd got a piece of code almost exactly like this working a few days ago, but after moving it into a new project with some different objects and a slightly different ...
0
votes
1answer
47 views

Removing calls to glGenVertexArrays() results in black screen

So, I previously used vertex array buffers (Core Profile 3.3), setup as follows: int offset = 0; glGenVertexArrays(1, &m_vba); glBindVertexArray(m_vba); glGenBuffers(1, &m_vbo); ...
0
votes
1answer
25 views

Sharing VBOs among Multiple GLKViewControllers?

I load my 3D model files and load their vertex, texture and normal during application launch in a background thread. These models are used by 2 GLKViewControllers. What I want to do is bind the data ...
0
votes
1answer
62 views

OpenGL/C++: Back to Front rendering with vertex buffers

I'm currently wrapping my head around how to efficiently render polygons within a vertex buffer in back-to-front order to get transparency working.. I got my vertex buffers and index buffers set up, ...
0
votes
1answer
52 views

VBO - What can I do at initialization?

I have a VBO interleaved with [x, y, z, textureX, textureY,.....] all pretty much working and displaying. I'm trying to figure out what can be done at initialization and forgotten. Here is what I'm ...
1
vote
1answer
79 views

OpenGL ES 2.0 vbo white screen

I have been trying to get my game engine to work on android and I got stuck at vertex buffer arrays. It works using FloatBuffer, but when I tried to render with VBOs I only got a white screen. So I ...
-1
votes
0answers
51 views

Textures with VBO. Why the terrain is invisible after trying to add texture

I've got a code that generates terrain and I want to add texture on it. The terrain without the texture is rendering fine, but when I'm trying to add textures it gets invisible. The commented out ...
1
vote
0answers
82 views

draw different objects with differents textures on the same VBO opengl

Hello, i need help with the following: First of all I tried to search information (much) but I still have the doubt: I'm working with OpenGL and in my program, drawing various geometric shapes ...
-1
votes
0answers
58 views

Terrain-VBO-Triangle Strips-LWJGL

I am currenlty working on a small schooter game butI want a terrafor mechanism in it so I decided to put the terrain into a VBO but now there is a line from the first vertex to the last right across ...
0
votes
2answers
41 views

opengl 3.3 / glew 1.9 VBO support returns false

I've built an simple OpenGL window and checked it's support. The support it returned: GLEW: 1.9.0 OpenGL: 3.3.0 The problem I'm having is due creating shapes (VBO). While creating a shape based ...
0
votes
0answers
47 views

Accelerate OpenGL 2d on python3

I used OpenGL to draw about 20 circles. Each circle has 2 lines, ~10 segments, and all of them have different colors and lenght. FPS ~=4. How can I do this faster? I am using Python 3 on Ubuntu Code: ...
0
votes
0answers
38 views

VBO indices array order and usage

Could anybody tell me what am I doing wrong with the array of indices? What should be a size of array and VBO for drawing a triangles from 1024*1024 vertices? glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ...
0
votes
1answer
76 views

Android OBJ to VBO loader, Garbage Collection loop, how to improve?

I've just recently gotten an OBJ loader and viewing Android application working correctly with vertices, normals and texture coordinates, but in order to keep track of these data values correctly, I ...
1
vote
2answers
200 views

The best way to use VBOs [closed]

What are the fastest and the most flexible (applicable in most situations) ways to use VBOs? I am developing an openGL application and i want it to get to the best performance, so i need someone to ...
0
votes
0answers
74 views

How do I render terrain using Vertex Buffer Objects in Qt?

I am trying to render terrain from a heightmap. I currently load the height map and can render it using vertex arrays with glBegin/glEnd but I need to do it with the use of VBOs. Since I'm using Qt ...
0
votes
1answer
85 views

OpenGL vertex buffer objects on windows-how run it? qt windows

I'm trying to use VBO to create a terrain from a heightmap, but i don't know what should I include to my project or what headers to use. I'm using Qt and my OS is Windows 7. When i want to use ...
0
votes
1answer
122 views

OpenGL VBO drawing problems

I'm having a problem currently with a particle engine I'm making. With the engine you can add more than one emitter in to the engine, the idea being that each particle system can emit its own ...
1
vote
2answers
61 views

The luminosity is not correct on simple plane using VBO

I have written a small OpengL test program using VBO. I have a spot in (0.0, 5.0, 0.0), a camera also in (0.0, 5.0, 0.0) which looks at the point (0.0, 0.0, 0.0). My plane is center in the position ...
0
votes
1answer
90 views

Writing my own OBJ parser that loads the data in VBOs, how to re-order data to match single index list?

I've been trying to convert an OBJ parser that I wrote previously that used display lists to use VBOs instead, and have attempted to see if I could figure out the issue myself without any outside ...
1
vote
1answer
85 views

glDeleteBuffers crashes during destructor call

Hi I am using VBO to load image texture and then draw it in C++. VBO id generate and bind and draw occurs here void ViewManager::render(){ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); ...
0
votes
0answers
81 views

VBO Cubes not rendering — Testing for unsupported features

I am trying to render a large cube composed of other cubes (`10x10x10 for a total of 1000 cubes). It works fine my computer and one of my friends' computer, but another one is just getting a blank ...
0
votes
1answer
71 views

How to add Column in Drupal's content View using VBO?

I want to add column into drupal's Content View. In Drupal's admin panel, when we click on content Management-->Content-->List the contents are loaded in table with columns ...
0
votes
0answers
59 views

Why my VAO doesn't work?

Recently, I'm learning the OpenGL programming. However, when I want to achieve a sample using VAO. It doesn't work as what is said in the redbook. The below is my code.I create two objects(a quad and ...
0
votes
1answer
110 views

What is stride in glVertexPointer, glTexCoordPointer in VBO

Hi I have a problem drawing with VBO. So I asked a question a here .I could not find the answer of my problem. But by discussing one answer given there I have now another question about strides in ...
1
vote
2answers
384 views

OpenGL ES iOS drawing performance a lot slower with VBOs than without

I've recently changed drawing in my current project from standard drawing from a memory array to VBOs. To my surprise the framerate dropped significantly from 60fps to 30fps drawing a model with ...
2
votes
1answer
103 views

When to delete buffer object?

I understand from this question that shader objects can be detached and deleted as soon as the program is linked. Do buffer objects behave similarly with respect to the VAO? Can I delete them after ...
0
votes
2answers
76 views

Restart primitive within single draw call (directx9)

I am porting openGL application wich use ability to restart triangle strip to optimize draw calls. So we can render dozens of separate object with two buffers and one draw call. In openGL index buffer ...
0
votes
1answer
84 views

Reusing same buffer with glDrawElements (iOS)

Is it possible to create a VBO and reuse it between calls to glDrawElements in the same rendering cycle? (I tried and obtained weird results). The example below is missing bindings, etc. Init code ...
0
votes
1answer
166 views

Weird texture coordinates (VBO, OpenGL)

I am trying to create a simple "terrain", currently it's just flat. I'm using OpenGL and C++, as well as VBO's. However no matter how much I tamper with it and try to wrap my head around it, I can't ...
0
votes
1answer
60 views

Wierd sounds & beeping when rendering with vbo

im using C# and Opentk to render voxels, i used display list which were fine but slow, so i switched to VBO, since then every time im rendering something with vbo, there are wierd sounds and beeping ...
0
votes
1answer
77 views

VBO - Cube Offsets

I have some code that is supposed to create a new VBO and fill it with cubes that I created using offsets instead of glTranslate. I have a cubeVBO class that creates a new cube with offsets, but for ...
0
votes
0answers
103 views

OpenGL VBO (crash) glDrawArrays

I'm having trouble rendering a pretty large VBO of quads. This code appears to work fine on small meshes, yet when I try to render pretty large ones(58997 quads) from a single VBO it crashes ...
2
votes
1answer
279 views

Texture on quad rendered using vertex buffer objects only half transparent

I'm converting some code from OpenGL 1.3 to OpenGL ES 1.1. It's a 2D game, so it mostly comes down to rendering textures onto quads. There is no immediate mode in OpenGL ES, so I had to use vertex ...
7
votes
2answers
193 views

VBOs slower than obsolete method of drawing primitives - why?

I'm working on a Tile-based OpenGL, C++ application. I'm adding sample screen from application, so that it will be more clear: I have Tile class which contains an array of Objects. Each tile can ...
7
votes
0answers
255 views

Problems with OpenGL 4 VBOs and Numpy arrays, Pyglet/Python

I'm getting started with using OpenGL 4 in Python (through Pyglet and some framework code I got off the net/wrote myself for loading Shaders/Programs), but I think I understand things fairly well, so ...
1
vote
1answer
64 views

Rendering polygons with a VBO seems to lose some vertices

I'm trying to render a set of polygons, i have a set of points and im not doing any triangularization. If i render my VBO with GL_LINE_LOOP mode, the lines went whit the right vertices, but when i ...
0
votes
2answers
159 views

glDrawArrays doesn't draw anything?

Program successfully loads everything, code is completely dirty i accept but i am at least trying to draw something. but it seems something went wrong, no error, no display :P PS: projection, load ...
0
votes
2answers
96 views

Rendering thousands of moving quads

I have to render large quantities of particles. These particles are simple non-textured quads (squares actually). Oh, and they're moving all the time since they're particles. I have considered 2 ...

1 2 3 4 5 8