Tagged Questions

5
votes
5answers
497 views

How to make fading-to-black effect with OpenGL?

Im trying to achieve fade-to-black effect, but i dont know how to do it. I tried several things but they fail due to how opengl works I will explain how it would work: If i draw 1 white pixel and ...
3
votes
2answers
2k views

Alpha masks with OpenGL

I want to use an alpha mask in OpenGL so that white(1)=visible and black(0)=hidden. So what I do is I write something in the alpha component of the framebuffer using glColorMask(False, False, False, ...
2
votes
2answers
168 views

Problem with blending in openGL (Color bar example)

Can anyone give some clues as to why when I try to render the color bar quad below It appears like this: Here is my rendering code: gl.glEnable(GL.GL_BLEND); gl.glBlendFunc(GL.GL_ONE, ...
2
votes
1answer
1k views

Any undersandable description of glTexEnvi (OpenGL ES 1.x)?

I've seen as many different parameters as many source codes I saw. Is there a description can be found somewhere that refers all about those parameters in details?
1
vote
1answer
69 views

Bad (unattractive) blending in OpenGL with bright figures on dark background

I have a problems in OpenGL with blending (in result of antialiasing or textured painting). See problem illustration: I have the following setup code // Antialiasing glEnable(GL_POINT_SMOOTH); ...
1
vote
1answer
63 views

Why doesn't alpha blending work in ortho?

This is how I turn on ortho projection after drawing 3D objects: glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0,Screen_Width,Screen_Height,0,0,1); And this is how I turn on blending and ...
1
vote
1answer
102 views

How to blend texture colors with simple multiplication to the colors under it?

So i want my texture colors to multiply with the colors under it, how this can be done with glBlendFunc() ? For example: if i have a texture color (0.31, 0.51, 0.124) and there is a color (0.83, ...
1
vote
1answer
819 views

OpenGL - mask with multiple textures

I have implemented masking in OpenGL according to the following concept: The mask is composed of black and white colors. A foreground texture should only be visible in the white parts of the mask. A ...
1
vote
1answer
350 views

beginner transparency / opaque in openGL

I am going through the NeHe tutorials for OpenGL... I am at lesson 8 (drawing a cube with blending). http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=08 I wanted to experiment and change half ...
1
vote
1answer
393 views

Blending multiple textures to make a particle system

Here is the deal, I want to make a particle system based on textures and I have a cloud texture. I map the texture to 10 different polygons each having same size and textures. when I blend them over ...
1
vote
1answer
90 views

OpenGL blending (Java)

I'm writing some Java OpenGL code (though the principles are the same in C++ openGL). I have a situation where I want to render certain items on top of others. I can do that by disable the depth test ...
1
vote
5answers
2k views

How to remove black background from textures in OpenGL

I'm looking for a way to remove the background of a 24bit bitmap, while keeping the main image totally opaque, up until now blending has served the purpose but now I need to keep the main bit opaque. ...
1
vote
1answer
834 views

BlendFunc for textured fonts with changing background

I am attempting to use Textured fonts as so that I can display text in my openGL scene. However I am having trouble finding glBlendFunc values that will work. The background that the text will be ...
0
votes
4answers
216 views

alpha blending with multiple textures leaves colored border

following problem: i have two textures and i want to combine these two into a new texture. Thus, one texture is used as background, the other will be overlayed. The overlay texture is getting ...
0
votes
1answer
63 views

problem blending properly in openGL

I'm trying to draw a 2d character sprite on top of a 2d tilemap, but when I draw the character he's got odd stuff behind him. This isn't in the sprite, so I think its the blending. This is how my ...
0
votes
2answers
324 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 ...
0
votes
1answer
573 views

OpenGL texture blending and translation

I've got two textures mapping to a surface, one is a checkerboard (the pattern on the floor) and one is a lightmap, both of which are blending and presenting just fine. What I'm having trouble with is ...
0
votes
1answer
369 views

Java OpenGL blending image colors

I'm trying to blend 2 images together in the following way: Image 1 should be drawn as the base image. Image 2 should be drawn overtop of image 1. Anywhere image 2 is non-transparent, it should ...
0
votes
1answer
353 views

how to compile glblendequation in visual studio 2010?

how to compile glBlendEquation() in visual studio 2010? it say: error C3861: 'glBlendEquation': identifier not found
0
votes
1answer
279 views

Opengl: Problem with masking

Hey all, I'm working on creating a hole in a wall using masking in opengl, my code is quit simple like this, //Draw the mask glEnable(GL_BLEND); ...