Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
617 views

What is a good code structure for api-independant vertex processing?

Currently working on a 3D media engine using C# and I have come across a little conundrum. I have my rending loop figured out, I got a great plug-in architecture and content management system and even ...
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, ...
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 ...
2
votes
1answer
560 views

What's the preferred vertex data format for OpenGL ES on iPhone OS?

In the book "Mobile 3D Graphics with OpenGL ES and M3G" the authors say that choosing the correct vertex data format will have huge impact on performance. They recommend GL_SHORT for most vertex data. ...
1
vote
1answer
42 views

How does DirectX read in vertices?

So I've went through some tutorials and resources such as the DirectX Documentation / Reference itself and either I missed something or I really can't find an answer to my question. The question is ...
0
votes
0answers
65 views

Is there a way to get generic vertex attributes into OpenGL Shader builder on the Mac?

I'm looking for a way to develop shaders for my game engine on the Mac. I've come across the OpenGL Shader Builder app, which seemed really awesome apart from one thing. I couldn't figure out a way to ...
0
votes
0answers
98 views

Variable vertex buffer for openGLES on android

I am currently making a 2D physics game for android, using java and openGLES. A lot of my objects are soft body and deformed by the physics, so I would like to draw the deformed physics mesh instead ...