Tagged Questions
0
votes
0answers
15 views
java lwjgl equivelant of push/pop for VBA/VBO's
i have been using native draw calls for openGL and have run into a problem that i fixed by incuding glPushMatrix and glPopMatrix in my code. i found that native was slow so i have moved on to VBO's.
...
0
votes
0answers
29 views
draw OBJ model one face at a time
I am trying to render a model loaded from an OBJ file. its just a basic wireframe so I'm not worrying about normals, tex coords, etc.
I am loading the vertex and index data into VBOs bound to a ...
1
vote
1answer
56 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
22 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
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, ...
0
votes
0answers
23 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
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, ...
-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
83 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
60 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
42 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, ...
1
vote
2answers
201 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
86 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
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
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 ...
2
votes
1answer
105 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
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
104 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
281 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
195 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
162 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
vote
0answers
99 views
Supporting multiple materials per mesh
My mesh class has a single VAO index, and an index for one buffer of vertices, colours, tex coords, normals and indices (if used). I'm loading Wavefront .obj files into that mesh class and treating ...
0
votes
1answer
171 views
About .obj 3d model format and VBO
Are the amounts of v, vn and vt same in an .obj model ? I ask it because i can only use one index per draw so i have that to use VBO
struct VertexCoord
{
float x,y,z,w;
float nx,ny,nz;
float u,v;
};
...
1
vote
0answers
275 views
OpenGL simple triangle_strip rendering
I have question to mesh drawed by triangle_strip and line_strip with AndEngine.
I'm generating 2d terrain using triangle_strip , triangles are created this way
1 3
|\ |\
| \| \
0 2 ...
1
vote
1answer
321 views
Display Lists and VBO OpenGL/LWJGL
I have recently figured out how to render 3D cubes using LWJGL and OpenGL and I was so excited, I rendered 2000 and effectively froze my computer. I've heard of things such as Display Lists and VBO ...
0
votes
0answers
61 views
Mutliple cubes in one VBO
I am trying to render a landscape of cubes, the cubes will be in chunks of 16x16x16 cubes. I used to render my chunks by translating the chunk position like this:
public void gen() {
for (int x = ...
3
votes
1answer
148 views
VBO performance and chunks
First off, my code is in no way optimized. I'm also using old glTranslatf() and all that because I don't know the new way of doing things. Here's my code:
public class GenChunk {
Chunk c;
VBO vbo = ...
1
vote
2answers
96 views
OpenGL Vertex Attribute Reuse
In the default mesh vertex construction we do this.
//v = vertex, p = position, c = color
buffer = { v0 , p0, c0,
v1 , p0, c0,
v2 , p0, c0 };
And we have an triangle.
But I ...
0
votes
1answer
72 views
Questions on OpenGL VBOs
I'm currently trying to make a basic game with cubey terrain, similar to Minecraft classic. My first question:
How do I store a list of cubes in a VBO and then rebuild the list when I change that ...
1
vote
3answers
321 views
Improving VBO performance in OpenGL
So I am currently trying to render complex models at a decent speed, and having some trouble; rendering a single model causes my framerate to become strained, without any added work in the program. ...
2
votes
1answer
74 views
Deleting data out of a OpenGL VBO
I have a VBO that holds 4096 cubes, and I am wondering if I can edit the VBO to actually remove a cube. Here is my code for rendering my vbo (I know I am rendering it in the old fashion):
for (int y ...
0
votes
1answer
68 views
VBO of std::vector<MyClass*> and correct strides
I'm wondering how to get the maximum data locality and performance for the following problem without data copy.
I've a std::vector< MyClass* > where MyClass is something like
class MyClass
{
...
2
votes
1answer
94 views
Best Way to update all vertices data in openGL and to recalculate normals
Q1: I have a 3D model which has a vertex array. each element has x,y and z values.
Now I have created a dynamic vbo buffer to render this array in OpenGL. The problem
is that I have to update all the ...
0
votes
0answers
108 views
java vbo texture on quads wont draw
i have two vbo lists, one for the position vercites of my quads (4*3 floats per quad)
and one for my texture coordinates (4*2 floats per quad)
i fill the vbo lists in my uploadToGraka() method
if i ...
0
votes
1answer
351 views
OpenGL VBO, VAO, Cubes, and Colors
I'm currently trying to get my head around VBOs and I'm running into some problems.
I'm using an interleaved array with position, colors, and normals. However, when I go to draw, the display is just ...
1
vote
1answer
70 views
External function to render cloud of points
I'm currently building a plug-in in C++ for the program Igor Pro. This plug-in takes three arrays of points (X, Y, Z) and returns a matrix with the pixel values of the data (float ...

