Tagged Questions

8
votes
1answer
623 views

Is it possible to share an opengl framebuffer object between contexts/threads?

I want to render my scene in one thread and then blit the result in window owned by another thread. To avoid reading the framebuffer back to cpu memory, I would like to use a framebuffer object. So ...
5
votes
2answers
140 views

How could OpenGL buffers' state persist between program runs?

I'm writing an OpenGL program that draws into an Auxiliary Buffer, then the content of the Auxiliary Buffer is accumulated to the Accumulation Buffer before being GL_RETURN-ed to the Back buffer ...
5
votes
6answers
968 views

Using OpenGL Without X-Window System

Hell every body , i am newbie in linux programming ( Not Windows ) . i want to know how i can using OpenGL on Linux Platform Without X-Window System , can i send OpenGL Graphics Directly to ...
4
votes
3answers
2k views

OpenGL: Trouble with Render to Texture & Framebuffer Object

I'd like to render a scene to an initially empty texture. To do so, I use a Framebuffer Object to which I attach an empty 2d texture and a depth buffer. After the set up, as for testing, I draw a ...
3
votes
2answers
76 views

Blend FBO onto default framebuffer

To clarify, when I say 'default framebuffer' I mean the one provided by the windowing system and what ends up on your monitor. To improve my rendering speeds for a CAD app, I've managed to separate ...
3
votes
1answer
115 views

framebuffer and using shaders in opengl

I'm quite a bit confused about framebuffers. What I want to do is using a framebuffer with multiple textures attached, fill every texture and than use a shader to combine (blend) all textures to ...
3
votes
2answers
782 views

opengl invert framebuffer pixels

I was wondering was the best way to invert the color pixels in the frame buffer is. I know it's possible to do with glReadPixels() and glDrawPixels() but the performance hit of those calls is pretty ...
2
votes
1answer
102 views

How do I setup and use a persitent framebuffer object for doing unique color selection?

This question changed a lot since it was first asked because I didn't understand how little I knew about what I was asking. And one issue, regarding resizing, was clouding my ability to understand the ...
2
votes
2answers
97 views

Is there a way to use application that use hardware accelerated OpenGL on a headless machine?

There exist a class of applications that use opengl to provide hardware acceleration, but are not GUI based. However it seems that in the default case, to use opengl, there must be running an X-server ...
2
votes
2answers
274 views

Maximum OpenGL Framebuffer Object size limit?

I am working on an OpenGL application on my Ubuntu laptop. My app shows lots of black and white unrecognizable patterns when I try to display a monochrome image (quite large). I have a hunch that it ...
2
votes
2answers
872 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
108 views

How to use depth testing when rendering to an offscreen buffer then onto texture

I'm rendering my scene to a texture. This works fine except that depth testing does not work. How do I enable depth testing if rendering to an offscreen texture? I'm using the FrameBuffer class ...
2
votes
2answers
449 views

glReadPixels() slow on reading GL_DEPTH_COMPONENT

My application is dependent on reading depth information back from the framebuffer. I've implemented this with glReadPixels(0, 0, width, height, GL_DEPTH_COMPONENT, GL_FLOAT, &depth_data) However ...
2
votes
2answers
2k views

opengl - blending with previous contents of framebuffer

I am rendering to a texture through a framebuffer object, and when I draw transparent primitives, the primitives are blended properly with other primitives drawn in that single draw step, but they are ...
2
votes
2answers
996 views

Transparent FrameBuffer background in OpenGL

I want to use glClear and glClearColor to fill a frame buffer with a colour including alpha transparency. However the framebuffer always renders as opaque when binded to a texture which is rendered to ...
1
vote
2answers
45 views

GL_DRAW/READ_FRAMEBUFFER vs GL_FRAMEBUFFER?

I've noticed that there now are the GL_DRAW/READ_FRAMEBUFFER extensions. Currently I am simply using GL_FRAMEBUFFER and glTextureBarrierNV. However, I have not found that much about the READ/WRITE ...
1
vote
3answers
140 views

Trying to implement Render to Texture

I'm having trouble implementing render to texture with OpenGL 3. My issue is that after rendering to the frame buffer, it appears the rendered object becomes deformed, which may imply a bad ...
1
vote
4answers
212 views

OpenGL framebuffer: can clear it, but can't draw to it

On a Mac, I've got an OpenGL setup that is working just fine apart from framebuffers - texturing works, etc. So I know that texturing is enabled, I have a valid context, etc. All works flawlessly ...
1
vote
1answer
284 views

Setting up OpenGL Multiple Render Targets

I've seen a lot of material on this subject, but there are some differences between the examples I've found and I'm having a hard time getting a solid understanding of the correct process. Hopefully ...
1
vote
2answers
315 views

OpenCV 2.2 window causes problem on OpenGL

Here is very simple code .. Only thing is I repeated same code manytimes for detail debug. Detail info: OpenGL version 3.3.0, Window 7 OS and VS2008, OpenCV 2.2.0. RenderObject(); ...
1
vote
1answer
341 views

OpenGL Framebuffer Render to Texture not Working

I'm experimenting with framebuffers to create a glow effect using Java and JOGL, but I am having problems. At the moment, my goal is to render my spaceship model, textured with an illumination ...
1
vote
2answers
535 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
3answers
223 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
230 views

OpenGL copy ColorAttachment0 from a Renderbuffer to a Texture2D

I'm using OpenTK and C#. I'm rendering to a renderbuffer and I need to copy it's contents(ColorAttachment0) to a Texture2D so I can do some post-processing on it, and the draw it to the screen. How do ...
1
vote
2answers
275 views

is it possible to render to framebuffer object outside of main render loop

i am using a separate framebuffer object for color picking 2d objects in opengl. i am curious if its possible to only draw to the framebuffer and read the color when needed. what i am doing now is ...
1
vote
1answer
997 views

Blurring the depth buffer in OpenGL - how to access mipmap levels in a fragment shader?

I'm trying to blur a depth texture by blurring & blending mipmap levels in a fragment shader. I have two frambuffer objects: 1) A color frambuffer with a depth renderobject attached. 2) A z ...
1
vote
2answers
655 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
503 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
338 views

How should I organize OpenGL ES 1.x 2D layer tree?

I'm developing a cute puzzle app - http://gotoandplay.freeblog.hu/categories/compactTangram/ - , and for performance reasons I decided to render the view with OpenGL. I started to learning it, I'm ok ...
0
votes
1answer
31 views

Using sRGB colour in QGLFramebufferObject with multisampling

For performance reasons I have separated my 2D and 3D rendering. I have two QGLFramebufferObjects for each type because QGLFramebuffer does not support multisampling with GL_TEXTURE_2D as a target, ...
0
votes
2answers
48 views

Using depth and color buffers with different resolutions (sub-sampled depth buffer)

I want to use a sub-sampled depth buffer to increase performance of a program. In my case, it does not matter if there are artifacts or geometry popping will occur. I have set up my framebuffer like ...
0
votes
0answers
88 views

Border of Alpha-Blended Textures get black after going through Blur-Post Processing Shader (OpenGL, GLSL)

I am rendering a scene to a texture using an fbo and then I render this texture to another one using a gaussian blur shader. But after that, the borders of all faces that are alpha blended get black. ...
0
votes
0answers
63 views

OpenGL texture performance issues

Me and my friend are trying to create a platform 2D game using OpenGL. We agreed that to get the best performance(and wasting some memory), it should be best to build up a "static texture" that ...
0
votes
1answer
150 views

OpenGL Framebuffer, drawing to texture

We have a hard time figuring out rendering to texture using framebuffer objects. We have managed to draw our texture unto another texture, but the texture isn't centered. If we set the the texture ...
0
votes
0answers
39 views

NVIDIA driver post processing

Today I learn about a project which is able to wrap an application framebuffer only by locating a DLL in the application path. Wow. The DLL (at the word of the speaker) doesn't have ani API, so I ...
0
votes
2answers
144 views

Read Framebuffer-texture like an 1D array

I am doing some gpgpu calculations with GL and want to read my results from the framebuffer. My framebuffer-texture is logically an 1D array, but I made it 2D to have a bigger area. Now I want to read ...
0
votes
1answer
81 views

OpenGL: Using only one framebuffer and switching target textures

Instead of using multiple framebuffer objects, can I also create only one and achieve the same results by switching it's target texture when needed? Is this a bad idea in all cases? If yes, why? ...
0
votes
2answers
472 views

Frame Buffer Object (FBO) and Render & Depth Buffers Relation

I saw many examples on the web (for example) which do the following Create and Bind FBO Create and Bind BUFFERS (texture, render, depth, stencil) Then, UnBind BUFFERS To work with FBO- Bind FBO, do ...
0
votes
1answer
153 views

Fast swapping framebuffers OpenGL

I recently read that simply switching the render targets of a framebuffer object is much faster than switching framebuffer object. As extreme as it sounds, does this this mean I should only ever use ...
0
votes
1answer
210 views

Why do I get a white square with a Framebuffer?

I am trying to add the use of Framebuffers to my OpenGL (OpenTK) project. Into the initialization method I added at the very beginning: this.RenderBufferTex = GL.GenTexture(); ...
0
votes
1answer
300 views

OpenGL framebuffer operations, drawPixels fails with Alpha channel

I'm messing around with the framebuffer with OpenGL and JOGL. I have a Graphics object, in which I draw. Everytime the Graphics changes, I extract the R,G,B and A information as bytes for each pixel ...
0
votes
1answer
928 views

glReadPixels GL_DEPTH_COMPONENT and color

How to get the depth and the color information out of any OpenGL drawing? I would like to save a depth image and a color image to the disk. What i tried is the following: ...
0
votes
2answers
229 views

Video as voxels in OpenGL

Hi any good references on displaying sequence of images from a video as voxel data in OpenGL? I want to display all these images at once as a cuboid with 50% alpha and navigate using keyboard or ...
0
votes
2answers
1k views

Problem with JOGL and Framebuffer Render-to-texture: Invalid Framebuffer Operation Error

Okay, so I am trying to render a scene to a small 32x32 texture and ran into problems. I get an "invalid framebuffer operation" error when I try to actually draw anything to the texture. I have ...
0
votes
0answers
216 views

Pyglet isn't displaying fonts to the correct size

I took advice from an answer to another question I asked which led to me using a DPI of 72 to match points to pixels for the text in my game. The problem is that pyglet is rendering text far too big ...
0
votes
2answers
800 views

How to collapse five OpenGL textures into one?

I want to merge 5 "sublayers" to one single texture (you know, somethin' like Flatten Image in Photoshop) in OpenGL ES 1.x iPhone. I'm new to OpenGL, and just haven't find the answer yet.
0
votes
1answer
271 views

Lines do not render on an offscreen frame buffer with a completely black texture

If I have a frame buffer which has a textured binded to it which is simply black with full alpha and I try to draw a line to it, even if the line has full alpha it wont render. I'm not stupid, so the ...
0
votes
1answer
177 views

Problem using FBO: Only first pass renders. A possible problem at setting render target back?

I have a huge problem with using FBO. I have a multi-pass display using FBOs and multitexturing. Everything seems to work fine until the end of first execution of display. I set the render target ...
0
votes
1answer
705 views

Fragment shader rendering to off-screen frame buffer

In a Qt based application I want to execute a fragment shader on two textures (both 1000x1000 pixels). I draw a rectangle and the fragment shader works fine. But, now I want to renderer the output ...
0
votes
1answer
1k views

Framebuffers, textures and glColor behavior in OpenGL/OpenGL ES

I apologize in advance if this question seems confused. The behaviour I am seeing makes no sense to me. I have a Framebuffer rendering to a texture. I render solid rectangles of red, green, blue of ...

1 2