Search Results

3
votes

OpenGL: How to implement an “eraser” tool?

Draw a full-screen textured quad over your scene. When the user draws a brush stroke, use glTexSubImage2D to update the your texture. glReadPixels/glDrawPixels is slow. …
0
votes

Is OpenGL dead?

It's not dead, it just smells funny. …
1
vote

What is the best free cross-platform OpenGL GUI library for a video game?

I used GLui for this little demo: HexPlanet …
0
votes

Simple wireframe format?

OBJ is the most widespread and simplest, but it breaks down if you need more than vertex position, normal, and a single texture coordinate. It's not extensible at all. It's also text based so it ha …
0
votes

[OpenGl] Loading new texture into already defined texture name

The function you are looking for is "glCopyTexImage2D" or "glCopyTexSubImage2D". …