Tagged Questions
The vertex-buffer tag has no wiki summary.
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 ...
6
votes
4answers
1k 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?
5
votes
2answers
277 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
1answer
839 views
How to properly update vertex buffers in DirectX 10
For a little background: I am working on a project in C++ in which I am trying to draw 3D representations of objects based on real time profile data. The profiling data is gathered from external ...
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
391 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
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
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
69 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
2answers
356 views
PIX Call that Previously Succeeded Failed During Playback error on IASetVertexBuffers()
I'm trying to debug the shaders in a SlimDX DirectX11 game I've been coding for a while. The code runs fine and executes without a hitch (albeit seemingly ignoring my textures) and when I run an ...
2
votes
1answer
117 views
How many vertex buffers is too many?
Newer API's like D3D11 force use of vertex buffers.
You can use static (contents don't change) or dynamic vertex buffers (contents can be updated and changed by CPU).
My question is, how many 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
1answer
164 views
Memory management for vertex buffer data
Assume that I need to render static picture (100 stars).
I generate star data (position, color, size) to std::vector stars;
Then I create a class for D3D rendering, which consist a buffer:
...
2
votes
2answers
562 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 ...
2
votes
1answer
463 views
Rotate individual polygons in an Open GL vertex array?
I am working on a game for Android using OpenGL ES, and I have run into a performance problem.
What I am trying to do: I have a bunch of objects on screen that all share the same mesh, but all have ...
2
votes
1answer
1k views
XNA - Using Dynamic Vertex Buffer and only four(4) vertices
Just a quick question on drawing quads. I'm currently using:
GraphicsDevice.DrawPrimitives(PrimitiveType primitiveType,
int startVertex, int primitiveCount);
This draws my ...
1
vote
0answers
39 views
OpenGL ES VertexArray and not drawing properly on android
I'm working on a little game demo using OpenGL ES 1 and using a "BufferPool", which essentially is just a fancy interface for a direct ByteBuffer which I store all the vertex, color, and texcoord data ...
1
vote
1answer
244 views
GLES2 Is glBindAttribLocation() Necessary?
This might be a noob question. As I understand it, glBindAttribLocation(..., AAA, ...) will bind an attribute within the program to the location ID of AAA, as long as AAA is unique. If I have the ...
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
205 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
105 views
using setvertexdeclaration with fixed-function pipeline in directx 9
I am trying to use my own vertex structure, upload the vertices into a vertex buffer (indices into index buffer, without FVF code), set up the vertex declaration and stream source and use, and draw ...
1
vote
1answer
677 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
210 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
576 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
313 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
2answers
687 views
How to compute bounding box/sphere across multiple meshes (C#)
I load multiple meshs from .x files in different mesh variables.
Now I would like to calculate the bounding sphere across all the meshes I have loaded (and which are being displayed)
Please guide me ...
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
356 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
0answers
17 views
When using Context3DVertexBufferFormat.BYTES_4, what is the value range of one field?
If I populate a vertex-buffer by using the byte-array method:
//Example:
var ba:ByteArray = new ByteArray();
//Write vertex #0:
ba.writeFloat(-.5);
ba.writeFloat(-.5);
ba.writeUnsignedInt(0);
...
0
votes
0answers
22 views
Should a new VertexBuffer3D & IndexBuffer3D be created for each Program3D used?
If I have a few Program3D objects (each with it's own Vertex-Shader and Fragment-Shader responsible for it's own rendering task), do I need to instantiate a new VertexBuffer3D and IndexBuffer3D so ...
0
votes
0answers
26 views
How to use VertexBuffer3D to manipulate objects in a hierarchical display structure?
To better explain what I'm trying to achieve, here's a simple example:
Scenario 1: Within some 3D container object, I would like to add two Cubes: one without any transformation, and one with small ...
0
votes
1answer
57 views
OpenGL ES 1.1 Vertex Buffer Object Not Working
I am developing an iPhone game using OpenGL ES 1.1 and need to use vertex buffer objects in order to render 500+ particles without the performance decreasing.
My game was able to draw successfully ...
0
votes
1answer
30 views
I have written a CAD program in JOGL that works great until I put in a glu quadric, then the lighting is off
I wrote CAD software (Protocase Designer) and it was working great. Except on ATI cards where it crashes all the time. On the theory that display lists are deprecated and maybe ATI cards don't fully ...
0
votes
1answer
115 views
Direct3D C++ texture mapping
Hey guys can anybody help me with texture mapping in Direct3D C++. I have created a basic game and want to texture the enviroment. I have looked at numerous online tutorials but have had no luck so ...
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
318 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
162 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
2answers
99 views
Beginners question about VertexBuffers
I'm looking at XNA for the first time in my life, and I am puzzled by the examples I read. They contain a duplication I don't understand:
protected override void LoadContent()
{
...
0
votes
1answer
168 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
97 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
0answers
351 views
OpenGL ES2 Vertex Array Objects help
I am having trouble understanding how to use VAO's in OpenGL ES2 (on iOS) and getting them to work.
My current rendering setup looks like this (in pseudocode):
Initialization:
foreach VBO:
...
0
votes
1answer
607 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 ...