Tagged Questions

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 ...
2
votes
2answers
64 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
1answer
462 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 ...
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
200 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 ...
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
182 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
228 views

What is the most efficient way to send my geometry to glsl?

In my scene I have a tree of meshes. Each mesh contains a transformation matrix, a list of vertices, normals, uvs and a list of child meshes. I would like to send my geometry in an 'array of ...
0
votes
1answer
738 views

OpenGL ES Polygon with Normals rendering (Note the 'ES!')

Ok... imagine I have a relatively simple solid that has six distinct normals but actually has close to 48 faces (8 faces per direction) and there are a LOT of shared vertices between faces. What's ...