Tagged Questions

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?
2
votes
1answer
391 views

How do I use a mask to punch out my image?

I have a mask (loaded from a 256 grey PNG) that I want to apply to an image that's being used as part of my process for drawing a UITableViewCell's imageView.image property. When the cell isn't ...
1
vote
1answer
68 views

Averaging multiple UIImages

I have been searching for this answer for a while. But I haven't been able to find it. I would like to average the pixels of 30 UIimages. To do so, I would like to do it using Quartz2D instead of ...
1
vote
1answer
398 views

Mapping CoreGraphics Blend Modes to Porter-Duff

I have an iPhone app that does image manipulation via blending two UIImage objects via CoreGraphics, specifically CGContextSetBlendMode. I am currently researching porting it to Android. I've gone ...
1
vote
7answers
2k views

opengl paint program based on Apple's 'glPaint' on a white background - how to blend?

Trying to write a simple paint program for iPhone, and I'm using Apple's glPaint sample as a guide. The only problem is, painting doesn't work on a white background, since white + colour = white. ...
1
vote
1answer
1k views

CGContextDrawImage returning bad access

I've been trying to blend two UIImage for about 2 days now and I've been getting some BAD_ACCESS errors. First of all, I have two images that have the same orientation, basically I'm using the ...
1
vote
3answers
856 views

OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS

I need to draw the background for a 2D space scrolling shooter. I need to implement 3 layers of stars: one distant nebula (moving really slow) in the background, one layer of far away stars (moving ...
0
votes
0answers
35 views

kCGBlendModeHue : how to reproduce the effect in code?

I'm trying to reproduce the effect of the blend function kCGBlendModeHue and I have a hard time figuring out how it works. The documentation says : Hue blend mode uses the luminance and ...
0
votes
1answer
115 views

How can I make a glow stay the same color against the background, even though I am using additive blending?

I am using openGL and programming on an iPhone. I am rendering a glowing 'beam' on top of my game scene. I am using a few textures with additive blending to make the glow effect. If the beam is ...
0
votes
1answer
392 views

Alpha blending on the edges of an UIImage

I have two rectangular images: one is foreground, the other one is background. I am trying to blend the edges of the foreground image so that the foreground image looks like it is "part" of the ...
0
votes
2answers
845 views

I want to imitate Photoshop layer 'soft light' blending in iOS

The title says it all basically. In Photoshop a layer can be blended with a layer below it using many different ways, ie Normal, Dissolve, Darken, Soft Light, etc. I would like to duplicate this ...
0
votes
1answer
620 views

Masking in OpenGL ES

reading #20 tutorial on Nehe and a question here about masking, I implemented masking using b/w image and opaque image, however the result is completely not what is expected (I'm using OpenGL ES 1 on ...
0
votes
2answers
2k views

Transparency/Blending issues with OpenGL ES/iPhone

I have a simple 16x16 particle that goes from being opaque to transparent. Unfortunately is appears different in my iPhone port and I can't see where the differences in the code are. Most of the code ...