The vertex-array tag has no wiki summary.
6
votes
2answers
302 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, ...
5
votes
1answer
228 views
Best way to draw scatter plot with lots of data points in C++ using OpenGL
I'm writing a program in C++ that acquires 4 dimensional points data over a UDP socket and then plots the data in 6 separate 2D scatter plots. For example if we name the dimensions: A,B,C,D the six 2d ...
5
votes
1answer
991 views
OpenGL/JOGL: Multiple triangle fans in a vertex array
I'm working on making some moderately simple shapes with vertex arrays, and I'm making some good headway, but now I want to draw 2 (or more) triangle fan objects. Is there any way to only make one ...
4
votes
2answers
205 views
Texturing each polygon in vertex array - OpenGL
I am trying to get my render function to work. I am using vertex arrays. Here is the my vertex structure.
struct Vertex
{
float x, y, z; // The x, y and z floating point values
...
3
votes
2answers
179 views
A question about GL_VERTEX_ARRAY
This is just out of mere interest, but is there a limit to the amount of vertecies GL_VERTEX_ARRAY will 'hold' and render through something like drawArrays()? Or could I theoretically pass through a ...
3
votes
1answer
282 views
glDrawArrays: when has it finished?
Pseudocode:
void draw()
{
Vertex* vertices = scene.GetVertexArray();
glEnableClientState(...);
glVertexPointer(..., vertices);
glDrawArrays(...);
glDisableClientState(...);
...
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 ...
2
votes
2answers
154 views
VAO and element array buffer state
I was recently writing some OpenGL 3.3 code with Vertex Array Objects (VAO) and tested it later on Intel graphics adapter where I found, to my disappointment, that element array buffer binding is ...
2
votes
1answer
109 views
Rendering Optimization
I have heard that fewer drawing calls = faster
The implied lesson is to pack as much vertex data into as few arrays as possible to minimize the number of drawing calls.
I was thinking of writing a ...
2
votes
2answers
373 views
Qt Vertex Arrays not working with QImage
I'll begin by apologizing for the length of the question. I believe I've committed some small, dumb error, but since I'm entirely unable to find it, I decided to post all relevant code just in case.
...
2
votes
2answers
453 views
Can I delete OpenGL vertex arrays after calling glDrawArrays?
I am generating the vertex arrays on the fly on each render and I want to delete the arrays afterwards. Does glDrawArrays immediately copy the vertex arrays to the server? Hence is it safe to delete ...
1
vote
1answer
228 views
C++ struct memory layout and OpenGL glVertexPointer?
I have following struct to store my vertex data.
struct Rz3DContourNode {
float x; //pos x
float y; //pos y
float z; //pos z
float nx; //normal x
float ny; //normal y
float nz; ...
1
vote
1answer
238 views
OpenGL instanced array drawing
I have a simple OpenGL program and trying to draw an instanced array that stored in a vertex shader. I'm using two follow shaders for rendering:
Vertex Shader:
#version 330 core
uniform mat4 MVP;
...
1
vote
1answer
247 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
466 views
OpenGL: Using vertex array to draw a cube causes graphical glitch
When trying to draw the following quads in OpenGL using a vertex array (instead of using immediate mode rendering), I get the graphical glitch (line segment) shown in the picture, which can be found ...
1
vote
2answers
817 views
glDrawElements not working on iPhone but glDrawArrays works
I have tried to convert my OpenGL application to OpenGL ES. I am drawing elements on Mac this way:
glUseProgram(m_program);
// Update uniform value.
glUniform4f(uniforms[UNIFORM_COLOR], ...
1
vote
1answer
123 views
JOGL glArrayElement point providing 0,0,0
I have a JOGL opengl problem, I'm trying to use Vertex Arrays, but whenever I use glArrayElement (Note: glDrawElements doesn't work either.), it gives the point 0,0,0. Important code. I'm assuming a ...
1
vote
2answers
1k views
Fastest way to load arrays of vertices and face indices into OpenGL-ES?
I'm trying to load .obj files that I've formatted into:
vertexX vertexY vertexZ normalX normalY normalZ
and:
index1 index2 index3
format into vector and vector arrays, which I then directly ...
1
vote
2answers
282 views
OpenGL Vertex Arrays
I have a struct called Point (which happens to be a Python Extension) that looks like this:
struct Point {
PyObject_HEAD // Macro that expands to include a few more members
double x;
...
0
votes
0answers
43 views
JOGL2, EXCEPTION_ACCESS_VIOLATION when declaring and using normal vectors (Vertex Array method)
I am getting the EXCEPTION_ACCESS_VIOLATION only when I uncomment the commented lines (in init method
// Create the the vertex data
initVertexArray(gl);
initNormalArray(gl);
...
0
votes
1answer
83 views
OpenGL scaling vertex arrays
I have a vertex array that I draw as follows (I am working to convert this to a single glDrawArrays call, so that is not the issue here):
gl.glVertexPointer(3, GL.GL_FLOAT, 0, buff);
for ( int i = 0; ...
0
votes
1answer
82 views
Odd results plotting Array with glVertexPointer stride variable
I have an Nx4 array of vertices that I'd like to plot using glVertexArray and glDrawArray. as a 2D scatter plot. I currently initialize the array like so:
GLint data[4][MAX_N_POINT];
for (int j=0; ...
0
votes
0answers
369 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
2answers
217 views
OpenGL ES2 GLubyte colors in vertex array not working
Apple suggests using the GLubyte data type for color data on iOS, so I am trying to get this to work. The result I get is that all color components <255 are completely black, and only components of ...
0
votes
1answer
719 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
1answer
513 views
Converting OpenGL draw lists to vertex arrays or VBOs
I'm trying to convert a program using draw lists, which are deprecated in OpenGL 3.0+, to use either vertex arrays or VBOs, but I'm not finding any examples of how to do the conversion.
What's in the ...
0
votes
4answers
496 views
how to order vertices in a simple, non-convex polygon
I have a problem where I have a series of points for a simple, non-convex polygon (I hope I have the terminology correct). But the points are not necessarily in order (ie, clockwise or ...
0
votes
1answer
171 views
Correct format for loading vertex arrays from file
I've been banging my head on my keyboard for the past couple of weeks over this. What I'm trying to do is load an array of floats (GLfloat) and an array of unsigned shorts (GLushort) from a text file ...
0
votes
1answer
610 views
OpenGL draw circle, weird bugs
I'm no mathematician, but I need to draw a filled in circle.
My approach was to use someone else's math to get all the points on the circumference of a circle, and turn them into a triangle fan.
I ...
0
votes
1answer
2k views
NDK OpenGL undefined reference to glVertexPointer
When compiling the following C code with ndk-build in Terminal (I'm running Ubuntu):
#include <jni.h>
#include <GLES/gl.h>
#include <GLES/glext.h>
#include ...