Tagged Questions
1
vote
1answer
247 views
Photoshop “blend modes” with OpenGL
I am planning to make a simple drawing tool, which supports multiple layers and all blend modes from Photoshop.
I am considering to do the blending on the GPU (put each layer into a texture and draw ...
1
vote
1answer
798 views
iPhone - OpenGL ES 1.1 - Alpha Blend make texture wrong color
I'm newbie in OpenGL ES 1.1 for iPhone. Today, I tried to draw png texture on black background (the texture includes the alpha chanel) but the result is diference from source png file.
The Result on ...
4
votes
1answer
210 views
OpenglES - Transparent texture blocking objects behind
I have some quads that have a texture with transparency and some objects behind these quads. However, these don't seem to be shown. I know it's something about GL_BLEND but I can't manage to make the ...
0
votes
1answer
502 views
OpenGL ES 1.x blend two textures acording to bitmap in mainmemory
I have two textures (1024x1024, fully MipMapped, both PVRTC-4bitsPerPixel compressed). The Textures are applied on a 3D mesh.
On the CPU I'm updating a 512x512 boolean array.
Now I want to blend ...
3
votes
2answers
725 views
Android Opengl ES dark pixels on edge of objects
Hi all
I would like to draw you attention to the following pictures
First the original image
then how it is rendered on the screen
as you can see on the original everything is nice and yellow, ...
0
votes
1answer
1k views
OpenGL blending with source and destination alpha
I'm trying to render a texture with alpha to a frame buffer with alpha. I need the texture's transparency to be controlled by a combination of its own alpha, and the alpha already rendered to the ...
0
votes
1answer
456 views
OpenGLES iPhone Depth Blending problem
I am trying to make an OpenGLES 2.0 cube application.
The idea was to have a texture (with an alpha 75%) applied to all 6 faces of the cube.
This would mean that even if I rotate the cube i would be ...