Tagged Questions

9
votes
4answers
4k views

Is it possible to use OpenGL point sprites to simulate billboard sprites?

I was trying to set point sprites in OpenGL to change size with distance just as a billboarded sprite would, but I can't get the values in GL_POINT_DISTANCE_ATTENUATION_ARB to do anything useful. Is ...
3
votes
3answers
189 views

How do I support different OpenGL versions?

I have two different systems one with OpenGL 1.4 and one with 3. My program uses Shaders which are part of OpenGL 3 and are only supported as ARB extension in the 1.4 implementation. Since I cant ...
2
votes
1answer
311 views

What does ARB mean in the opengl functions?

This should be easy one, i just havent found any reference to that.
1
vote
1answer
313 views

OpenGL: can I mix glBindBuffer with glBindBufferARB?

Is glBindBuffer equivelent to glBindBufferARB ? Are the enums (like GL_ARRAY_BUFFER and GL_ARRAY_BUFFER_ARB) equivilent? Can I use non-_ARB enum in glBindBufferARB? Can I mix + match glBindBuffer() ...