0
votes
0answers
44 views

Blending in Different OpenGL editions

Below is a piece of code I use to achieve a demo about how blending works: glDisable(GL_DEPTH_TEST); glDisable(GL_BLEND); glBegin(GL_QUADS); glColor4f(1.0f, 0.0f, 0.0f, 0.5f); glVertex3i(2, ...
0
votes
1answer
167 views

Jogl: How to make a transparent background on com.jogamp.opengl.swt.GLCanvas?

I searched & read multiple forums about openGL transparency and I found this piece of code gl.glEnable(GL2.GL_BLEND); gl.glBlendFunc(GL2.GL_SRC_ALPHA, GL2.GL_ONE_MINUS_SRC_ALPHA); ...
2
votes
2answers
480 views

OpenGL multitexture blending

I am trying to implement layer function like photoshop. Here is what I want to draw.. But It is drawn like below It is using two layers. made with 2 texture framebuffers one for background, the ...
1
vote
1answer
843 views

LibGDX FrameBuffer blending

Some quick background here, I just started using the LibGDX framework for my first attempts at Android game development. I am trying to build a texture using their FrameBuffer class by placing in ...
0
votes
0answers
358 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
1answer
212 views

OpenGL Blending Color over Monochrome

I am wanting to set up a blend (without using shaders preferably) to produce the following. I have a black/white textured quad, and a quad of a solid color(for example red). I'd like the blend to ...
0
votes
2answers
483 views

OpenGL Blending problem with transparent skybox + transparent heightmap

Here's my problem. I'm rendering an orthogonal quad (filling the viewport) before everything (with vertex coloring at each corner), right after I'm rendering a cube skybox with 6 transparent polygons ...
5
votes
2answers
441 views

OpenGL blend problem

I want to draw aquarium (container) standing on table. Walls of aquarium need to be blended. But, if I draw table first and then aquarium I get: - looking from the up of the table: ok - looking from ...
1
vote
1answer
964 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
3answers
770 views

Why does my colored cube not work with GL_BLEND?

My cube isn't rendering as expected when I use GL_BLEND. glEnable(GL_CULL_FACE); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE); I'm also having a similar problem with drawing some ...