Tagged Questions

4
votes
4answers
1k views

problem saving openGL FBO larger than window

I'm rendering into an OpenGL offscreen framebuffer object and like to save it as an image. Note that the FBO is larger than the display size. I can render into the offscreen buffer and use it as ...
2
votes
1answer
418 views

Sample texture in GL_POINTS shaders

I have a shader that draws particles with solid colors. I would like to enable the shader to sample an FBO texture so that each particle can act upon the color "behind" it. Seems like it should be ...
2
votes
1answer
894 views

glsl - fragment-shader (blur) -> black screen

I've been trying to get this to work for the last few days and I'm really starting to become desperate. I'd be really grateful for suggestions you might have. What I've been trying to do: render ...
2
votes
1answer
894 views

chroma key with openframeworks/opengl

I need to implement chroma keying (removal of a solid color background) in an openFrameworks application. I'll be playing many (10 or more) videos simultaneously (in the same frame), and drawing them ...
1
vote
1answer
396 views

OpenGL. Testing the colour of a pixel. Can someone explain OpenGl glGetPixels to me?

Just getting started with OpenFrameworks and I'm trying to do something that should be simple : test the colour of the pixel at a particular point on the screen. I find there's no nice way to do this ...
1
vote
3answers
580 views

Making 3d Models Transparent in OpenGl and OpenFrameworks

I'm using c++ OpenFrameworks and ofx3dModelLoader to load in 3ds models that I've already created. This is working great. However I would like to smoothly transition models visually as the enter the ...
0
votes
1answer
297 views

Implementing a Fixed Coordinate system in OpenGL

The simple version of my project is rotating a sphere based on user input. However my rotations get weird after multiple rotations in certain situations due to openGL's local coordinate system. What ...