The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
44 views

Applying Colors to Vertex Arrays

I am looking to create two windows. One window shows points that will be selected using a red box which will turn the selected points red also. This will change the second window which shows the ...
0
votes
1answer
64 views

Understanding normals indices with Wavefront Obj

I've written a C++ Obj file loader that I can't get to work correctly. The problem is that while parsing a simple obj file like the following: # Blender v2.62 (sub 0) OBJ File: '' # www.blender.org ...
0
votes
0answers
111 views

The specular light does not work correctly using OpenGL and GLSL shaders

I have written a small test program using the OpengL API displaying a simple lighted box in rotation. I use ambient, diffuse and specular light. Here's a picture of my render : As you can see the ...
3
votes
1answer
83 views

Triangle gradient on OpenGL

I'm trying to make a triangle like the one in the right in the following picture: The problem is that what I want to achieve is a gradient of color from vertexes 1 and 2 proyected from C. As far ...
3
votes
0answers
131 views

OpenGL VBO's in Haskell

Basing on this post, I was trying to figure out how to use VBO's in Haskell. I tried to fill in the bits that were not covered there: data Sprite = Sprite { spriteImage :: Image ...
0
votes
0answers
75 views

Vertex Array Object (VAO) on OpenGLES mysteriously becoming invalid almost immediately after construction

I have a very strange VAO problem on iOS. The problem is that a freshly created VAO becomes invalid almost immediately after creation. I have a piece of code that creates a VAO in the usual way ...
0
votes
1answer
100 views

Textures are black in JOGL using VAO

So far, I used the deprecated immediate mode rendering, and I'm trying to switch to VAO then VBO. 2D quads are normally rendered using VAO, but when I'm trying to attach a texture, it remains black. I ...
1
vote
2answers
214 views

OpenGL: Rendering thousands of cubes with Vertex Arrays, not working too well

I am attempting to use vertex arrays to render about 2097152 cubes with LWJGL (no not all of them at once). I have implemented numerous types of polygon culling to enhance my performance from around ...
0
votes
2answers
155 views

The best way to texture a cube in openGL

Which is the best way (lowest memory, fastest speed) to texture a cube? after a while i have find this solution: data struct: GLfloat Cube::vertices[] = {-0.5f, 0.0f, 0.5f, 0.5f, 0.0f, 0.5f, ...
0
votes
1answer
97 views

Why does a plane's vertexdata contain 52 entries?

I'm new in 3D land and have experimented with several engines to get started. I have settled on away3D for it's simplicty. I am creating creating a plane and sticking a texture on it, and want to be ...
0
votes
1answer
99 views

Introducing a depth buffer to a renderer that uses multiple vertex array objects

I have a rendering infrastructure that uses multiple vertex array objects to render a complex scene. Each vertex array object is responsible for maintaining its own set of bound buffers, pointers and ...
0
votes
1answer
648 views

Using glVertexAttribPointer to draw model in OpenGL 2.0 with shaders (iOS)

It's been a couple of years since attempting anything in OpenGL so bare with me! I've knocked up object orientated iOS app loosely based on the default template which uses OpenGLES 2.0 and also uses ...
0
votes
2answers
136 views

What is required to use Vertex Array Objects?

I am trying to use Vertex Array Objects in one of my programs, but it seems that my PC don't support this feature. When I execute this function glewIsSupported("GL_ARB_vertex_array_object"), it ...
1
vote
1answer
438 views

OpenGL ES 2.0 - How to batch draw particles that have unique translations, rotations, scales, and alphas?

I've combined all of my vertex data for many particles into a single array. How would I batch draw all of those particles in a manner that preserves their unique translations? I am so confused as to ...
1
vote
0answers
111 views

Trouble catching mistake with OpenGL and Vertex Array Objects

I am having trouble spotting my mistake with this OpenGL implementation. When I run the program the only thing I get is a black screen. I should be seeing a cube. I am not getting any sort of errors. ...
1
vote
0answers
129 views

Save a VertexPositionColor[] as a Texture 2d

I"m currently working on a 2D game that sometimes draws objects using GraphicsDevice.DrawUserPrimitives<VertexPositionColor>(PrimitiveType.LineList, ...
0
votes
0answers
103 views

Drawing using Dynamic Array and Buffer Object

I have a problem when creating the vertex array and the indices array. I don't know what really is the problem with the code, but I guess is something with the type of the arrays, can someone please ...
0
votes
1answer
179 views

glGenVertexArrays not giving unique vaos

My friend and I are working on a project using C++ and OpenGL. We've created a C++ class for a "ModelObject", and each ModelObject has a GLuint vao as a member variable. Then while initializing a ...
0
votes
0answers
350 views

How do OpenGL 3D engines typically organize meshes / models in VBOs and VAOs? [closed]

So I'm wondering what's the best way to store 3D models in GPU memory. Consider a simple scenario: our world has only one car model, say Honda Civic. We load an .obj file for this and store its data ...
2
votes
2answers
517 views

Why does OpenGL's glDrawArrays() fail with GL_INVALID_OPERATION under Core Profile 3.2, but not 3.3 or 4.2?

I have OpenGL rendering code calling glDrawArrays that works flawlessly when the OpenGL context is (automatically / implicitly obtained) 4.2 but fails consistently (GL_INVALID_OPERATION) with an ...
1
vote
1answer
146 views

Draw a series of points with vertex array : nothing displayed

I'm trying for exercise to do the following: there is an array of points, expressed through couples of GLfloats.The user should click in a point in the window to make another points appear.When a ...
0
votes
1answer
110 views

What is a practical size limit to vertex buffer size?

In OpenGL, you generally get better performance by using vertex buffers, and even better performance by putting many objects into the same vertex buffer, so that lots of vertices can be drawn with a ...
4
votes
0answers
593 views

android-ndk, glGenVertexArraysOES not found

I want to use VAO in my native-c application for Android. The problem is, that GL_OES_vertex_array_object is supported and I can even get the addresses of glBindVertexArrayOES and ...
1
vote
1answer
145 views

Understanding opengl instanced arrays

given std::vector<GLuint> cubeIndices; struct FaceGroup { unsigned int face_index; unsigned int start_index; size_t length; // comparison operators omitted }; ...
1
vote
1answer
171 views

In the stock OpenGL ES app on iOS 5.1, are they really using the vertex arrays they declare?

In the stock OpenGL ES app you get (when you create a new "OpenGL game" in XCode), in the setupGL function, there is: glEnable(GL_DEPTH_TEST); //glGenVertexArraysOES( 1, &_vertexArray ) ; // ...
0
votes
1answer
194 views

OpenGL Mapping Textures to a Grid Stored Inside Vertex Array

I have code that uses indices and vertices to draw a set of triangles in the shape of a grid. All the vertices are drawn using glDrawElements(). Now for each vertex I will set its corresponding ...
1
vote
2answers
162 views

How does OpenGL know what type each vertex buffer object is?

I've just read through a tutorial about Vertex Array Objects and Vertex Buffer Objects, and I can't work out from the following code how OpenGL knows the first VBO (vertexBufferObjID[0]) represents ...
3
votes
1answer
2k views

What are Vertex Array Objects?

I am just starting to learn OpenGL today from this tutorial: http://openglbook.com/the-book/ I got to chapter 2, where I draw a triangle, and I understand everything everything except VAOs (is this ...
3
votes
1answer
1k views

OpenGL ES - How to Batch Render 500+ particles w/ different alphas, rotations, and scales?

I am developing an iOS game that will need to render 500-800 particles at a time. I have learned that it is a good idea to batch render many sprites in OpenGL ES instead of calling glDrawArrays(..) ...
1
vote
1answer
152 views

How is index data handled in glDrawElements?

I know that when glDrawElements is called it uses a buffer of indices to determine what vertices to draw in what order. My question is how those indices are applied to texture, normal, and color ...
0
votes
1answer
330 views

DirectX - Creating buffer with vertices array as argument

today I started working with DirectX(D3D9), everything went fine until I created a Static-mesh class. This class contains methods for generating the buffer, drawing and releasing the buffer. The ...
0
votes
1answer
462 views

Problems with making 2D terrain in OpenGL

Some time ago I asked this question about how to make a 2D terrain with opengl vertices. I got a good answer, but when trying it out it didn't draw anything, and I can't figure out what's wrong, or ...
1
vote
2answers
644 views

Should I use several glDrawArrays() or gather all the vertices to one big glDrawArrays-call?

I'm working on a personal Java OpenGL (JOGL) project and I'm using some custom objects with separate draw functions and vertices. public class Cube extends PhysicalObject { public void draw(GL gl) ...
7
votes
4answers
3k 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 ...
0
votes
1answer
279 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
429 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; ...
1
vote
1answer
590 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
1k 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; ...
4
votes
2answers
699 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 ...
5
votes
1answer
490 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 ...
2
votes
1answer
331 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 ...
3
votes
2answers
483 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 ...
2
votes
1answer
966 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 ...
0
votes
1answer
892 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
442 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 ...
3
votes
1answer
534 views

glDrawArrays: when has it finished?

Pseudocode: void draw() { Vertex* vertices = scene.GetVertexArray(); glEnableClientState(...); glVertexPointer(..., vertices); glDrawArrays(...); glDisableClientState(...); ...
3
votes
1answer
5k 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 ...
1
vote
1answer
1k 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 ...
6
votes
2answers
1k 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, ...
1
vote
1answer
1k 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 ...

1 2