Tagged Questions
Frame buffer object (FBO) is an OpenGL extension (core as of version 3.0) providing a flexible, lightweight implementation of rendering into one or several visible or invisible frame buffers or textures in a windowmanager-independent way (as opposed to e.g. PBuffer).
5
votes
1answer
5k views
Rendering to cube map
According to ARB_geometry_shader4 it is possible to render a scene onto the 6 faces of a cube map with a geometry shader and the cube map attached to a framebuffer object. I want to create a shadow ...
4
votes
1answer
316 views
OpenGL : How to set up OpenGL to just render to a FBO, no output to screen / window / control?
First off, I'm using OpenTK in a WPF application, but I think this is more a generic OpenGL thing.
In my application I want to be able to render 3D stuff to a texture.
I do NOT need output to a ...
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 ...
4
votes
1answer
320 views
GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT errors
I'm using FBOs in my OpenGL code and I'm seeing compilation errors on GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT. What's the cause of this and how do I fix it?
3
votes
2answers
148 views
Ping-pong rendering between two FBOs fails after first frame.
I am trying to create two FBOs and implement a ping-pong render. But, I only get the first frame to work properly. I am trying to simulate a game-of-life and, after the first frame, I only get a black ...
3
votes
2answers
847 views
glGenFramebuffers or glGenFramebuffersEXT?
I'm confused. To use the Framebuffer Object extension (FBO) in OpenGL 1.x on Windows, which of these do I use?:
wglGetProcAddress("glGenFramebuffers");
// or
...
3
votes
1answer
1k views
openGL / GLSL: bloom/blur, rendering to FBO
I've reached another impasse I can't seem to resolve on my own. I really hope someone can help me out.
I've been trying to create a nice little bloom effect using GLSL, which worked quite well. When ...
3
votes
1answer
1k views
Render to texture or offscreen framebuffer
I have a problem with rendering to texture and offscreen framebuffer with OpenGL ES on iPhone.
First image shows mahjong tiles rendered to CAEAGLLayer directly and this is correct. Second one shows ...
3
votes
2answers
1k views
What is the best way to handle FBOs in OpenGL?
I wonder since a long time what would be the best way to handle OpenGL FrameBuffer Objects (FBO).
Switching FBOs can be costly but defining new attachments too.
How do you do it fast ?
I hesitate ...
2
votes
1answer
45 views
multisampled FBO depth/stencil and OpenGL specs
the OpenGL 4.2 specs (section 3.3.1) clearly states that:
Because each sample includes color, depth, and stencil information, the color (including
texture operation), depth, and stencil ...
2
votes
1answer
129 views
how to handle depth in glsl
I have a problem with FBO and depth in openGL. I am passing projection, view and model matrices to a shader that writes to the g buffer. When I unbind the FBO and write to gl_FragColor the scene ...
2
votes
2answers
884 views
Reading the pixels values from the Frame Buffer Object (FBO) using Pixel Buffer Object (PBO)
Can I use Pixel Buffer Object (PBO) to directly read the pixels values (i.e. using glReadPixels) from the FBO (i.e. while FBO is still attached)?
If yes,
What are the advantages and disadvantages ...
2
votes
1answer
886 views
Accessing Multiple FBO Textures in GLSL to create another texture
I created 4 textures and attach them to FBO, named fbo_texture0 - fbo_texture3. All of them are successfully created, as given by the following screenshot:
image 1
Now, i wanted to create the 5th ...
2
votes
0answers
526 views
Using Frame Buffer Objects (FBO) in Borland C++ Builder 6
I have an "access violation" on the Frame Buffer Object (FBO)'s command glGenFramebuffersEXT :
void TGLForm::DrawScene()
{
wglMakeCurrent(ghDC, ghRC);
glEnable(GL_TEXTURE_2D);
...
2
votes
1answer
156 views
opengl question about Frame Buffer Object
How do I set FBO so it renders depth and color buffer in two separate textures, in one rendering pass ?
2
votes
1answer
829 views
Retrieving FBO data in GLSL
I'm trying to get MRT working in OpenGL to try out deferred rendering. Here's the situation as I understand it.
Create 3 render buffers (for example). Two RGBA8 and one Depth32.
Create an FBO.
...
2
votes
3answers
4k views
glReadPixels from FBO fails with multisampling
I have an FBO object with a color and depth attachment which I render to and then read from using glReadPixels() and I'm trying to add to it multisampling support.
Instead of glRenderbufferStorage() ...
1
vote
0answers
54 views
FBO + RTT with multisampling and depth/stencil
I am currently rendering via FBO+RTT with MRT, and I was investigating the possibility to implement antialiasing via multisampling (instead of supersampling), but Im a bit puzzled by the specs (I ...
1
vote
3answers
64 views
Render to texture problems
I'm tyring to get rendering to texture working, but am having a bit of trouble. I'm trying to render a simple quad to the screen to make sure everything is working.
target->enable();
...
1
vote
1answer
88 views
FBO offscreen rendering slow
I want to use offscreen rendering using openGL es 2.0 and GLSL shader
I setup FBO and it seems working except there are two problems
1) The program goes about 30 fps but all the sudden, it drops to ...
1
vote
0answers
104 views
Opengl ES 2.0, FBOs, and Fragment Shaders
Here's my render loop:
Bind a custom FBO
Bind a texture (previously associated with the FBO as COLOR_ATTACHMENT0)
Render using a custom fragment shader which chooses fragment colors on the basis of ...
1
vote
1answer
92 views
Opengl, DrawArrays without binding VBO
I am rendering array of points with a custom vertex shader.
Shaders looks like:
void mainVP()
in varying int in_vertex_id : VERTEXID
{
foo(in_vertex_id);
}
So the only thing I need - is ...
1
vote
1answer
130 views
OpenGL Render to texture (FBO) does not work
I'm trying to use FBO to render to texture and then display the texture, but all I get is a black rectangle. My code is:
Initialization:
#include <GL/glew.h>
#include <GL/gl.h>
#include ...
1
vote
4answers
222 views
Framebuffer Texture behavior in OpenGL/OpenGLES
In OpenGL/ES you have to be careful to not cause a feedback loop (reading pixels from the same texture you are writing to) when implementing render to texture functionality. For obvious reasons the ...
1
vote
2answers
537 views
Off-screen multiple render targets using Frame Buffer Object (FBO) or?
Situation: Generating N samples of a shape and corresponding edges (using Sobel filter or my own) with different transformations and rotations, while viewport (size=600*600) and camera remain ...
1
vote
1answer
534 views
OpenGL out of memory error, large FBO
I'm getting out of memory errors when creating a large (2^13) framebuffer object in PyOpenGL/PyQt:
width = 8192
height = 8192
self.textureFbo = ...
1
vote
1answer
122 views
Is it faster to bind 2 textures to one or two FBO?
I want to to run several shaders one after the other (mostly image processing), the output of one being the input of the following. I wonder if there's a performance gain to use only one FBO bound to ...
1
vote
1answer
200 views
Is regeneration of MipMaps when using Render to Target via FBOs required?
Assuming mipmapping is desirable:
I call glGenerateMipmapEXT(GL_TEXTURE_2D); when I first allocate the render target for my FBO. Do I have to call this again when I've completed rendering to it to ...
1
vote
1answer
342 views
Normal back buffer + render to depth texture in OpenGL (FBOs)
Here's the situation: I have a texture containing some depth values. I want to render some geometry using that texture as the depth buffer, but I want the color to be written to the normal ...
1
vote
3answers
224 views
Scaling a texture with a Framebuffer
My goal is to be able to scale textures when they are loaded, so I don't have to do it on every frame the sprite gets rendered. I figured the best method would be to render the scaled texture onto ...
1
vote
1answer
264 views
Is it possible to attach the default renderbuffer to a FBO?
I'm considering refactoring a large part of my rendering code and one question popped to mind:
Is it possible to render to both the screen and to a texture using multiple color attachments in a Frame ...
1
vote
1answer
236 views
Example for rendering with Cg to a offscreen frame buffer object
I would like to see an example of rendering with nVidia Cg to an offscreen frame buffer object.
The computers I have access to have graphic cards but no monitors (or X server). So I want to render my ...
1
vote
1answer
472 views
Image Processing on GPU- sucessive shaders for filters - FBO
I'm currently trying to implement in OpenGL image processing algorithms.
I would like to successively use several shaders in order to perform several filters (Sobel Gaussian,...).
I understood that ...
1
vote
2answers
657 views
How can I successfully perform hidden line removal after pass through FBO?
I'm trying to perform hidden line removal using polygon offset fill. The code works perfectly if I render directly to the window buffer but fails to draw the lines when passed through a FBO as shown ...
1
vote
1answer
315 views
How do VBOs/FBOs/DisplayLists work in Haskell's OpenGl bindings?
Haskell is about computation by calculation of values.
DisplayLists / FBOs / VBOs are very very stateful by nature. I.e. "give me a display list / buffer object".
How do these bindings work in ...
1
vote
1answer
504 views
OpenGL frame buffer slow and spontaneously stalls. Can even cause a system crash when used extensively
Apparently frame buffers are fast and the best way to render offscreen to textures or to simply pre-create things.
My game however is not liking them at all. In the current code frame buffers are ...
1
vote
1answer
926 views
OpenGL ES Framebuffer weird mirroring when drawing
I really can't wrap my mind around this:
Previously I couldn't get Framebuffers to work, but I've got it going now. However, there is this incredibly weird mirroring going on with the texture ...
1
vote
1answer
741 views
OpenGL with FBO RTT, blending when it shouldn't
This should be really simple, but it's consumed multi-hours of my time, and I have no clue what's going on.
I'm rendering a flat-colored full-screen quad to a texture, then reading back the result ...
1
vote
2answers
831 views
When using a GL_RGBA16F_ARB-texture, it contains just crap, but I get no error message
I generate a texture like this:
GLuint id;
glGenTextures(1, &id);
glBindTexture(GL_TEXTURE_2D, id);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
...
0
votes
0answers
72 views
Why does unbinding a texture from a FBO clear the texture?
I'm having some trouble with a render-to-texture operation. I create a FBO, attach a texture, render to it, and everything's fine, but when I try to change the attached texture, either to 0 or to a ...
0
votes
1answer
90 views
OpenGL, stencil buffer of FBO not working?
I try to use the stencil buffer of a FBO in OpenGL, but I can't get it to work. I bound a depth24_stencil8 texture to the FBO both for the depth and stencil targets. As a simple test, I tried:
/* ...
0
votes
1answer
68 views
OpenGL: Rendering to colour texture attached to FBO results in white texture
I've been stuck on this problem for about a day now so I'd be grateful for any help given.
My problem is that after having set up a frame buffer object with a single colour texture attached to the ...
0
votes
1answer
142 views
OpenGL ES glReadPixels exc_bad_access
I'm trying to create video from images using OpenGL ES and ffmpeg, but on iPad(4.3) I have a crash on glReadPixels
-(NSData *) glToUIImage {
int numberOfComponents = NUMBER_OF_COMPONENTS; //4
...
0
votes
1answer
112 views
Does iOS5 support both GL_STENCIL_INDEX and GL_STENCIL_INDEX8?
With the following code:
GLuint viewRenderbuffer, viewFramebuffer, viewDepthbuffer, stencilBuffer;
// Create the framebuffer object
glGenFramebuffers(1, &viewFramebuffer);
...
0
votes
1answer
79 views
Uninitialized/unreserved GPU memory in textures, OpenGL
(This is actually a crosspost from gamedev , but I thought you guys and girls might be helpful too!)
Edit: I elaborated about what I mean with overlay. After some sleep I have found that my call to ...
0
votes
2answers
84 views
How to render to frame buffer without displaying on screen with OpenGL?
I knew it is possible to render offline without displaying it on screen.
How to do it, maybe
create an invisible window then draw.
Can I use specific fbo when render?
0
votes
0answers
157 views
Trying To Render Scene To FBO Returns White
So this is what I'm trying to do. I'm trying to make a 2d game using LWJGL that has a dynamically generated terrain using images as tiles. It works fine, but when I try to do a zoom, the tiles get a ...
0
votes
1answer
92 views
FBOs are not working properly in OSX
I had this problem for some time, and I couldn't find a solution.
Here I initialize the Framebuffer:
//Initialize buffers
glGenBuffers(1, &primaryBuffer);
glBindBuffer(GL_FRAMEBUFFER, ...
0
votes
1answer
80 views
Can a GL_FLOAT texture be assigned to a FBO as a COLOR attachment?
For offscreen rendering to a texture, I'm attaching at the attachment GL_COLOR_ATTACHMENT0 a texture defined by
glTexImage2D(GL_TEXTURE_2D,0,GL_RGBA,width,height,0,GL_RGBA,GL_FLOAT,NULL);
I then ...
0
votes
1answer
334 views
OpenGL: Loading images into texture array
I'm trying to load multiple textures (from 8x8 *.bmp images) into multiple FBOs, by the following snippet:
glTexImage3D(GL_TEXTURE_2D_ARRAY_EXT, 0, GL_RGB8I_EXT, TEXTURE_WIDTH, TEXTURE_HEIGHT, ...