Tagged Questions

6
votes
3answers
672 views

OpenglES blending particles but not background

I have the next process: - draw background - draw objects and blend with background (1)GL10.GL_SRC_ALPHA, GL10.GL_ONE_MINUS_SRC_ALPHA - draw particle effect with blending (2)GL10.GL_SRC_ALPHA, ...
2
votes
3answers
197 views

webgl: white border when using transparency (alpha)

When rendering textures that have an alpha-channel, a white border appears around the non-transparent part (the border seems to be the pixels that have an alpha > 0 and < 1): The original ...
2
votes
1answer
413 views

Performance with EAGLView on top of other views

I have to overlay an (mostly) transparent OpenGL view on top of some other views in my iOS app, but testing on my iPod touch (first gen, albeit, iPhone OS 3.1) gives really bad performance. I have ...
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
645 views

What can we use instead of blending in OpenGL ES?

I am doing my iphone graphics using Opengl. In one of my projects i need to use an image, which i need to be used as a texture in opengl. The png image is 512 * 512 in size, its background is ...
1
vote
3answers
854 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
132 views

How do I set up my openGL blending so that I can draw on only the opaque areas on a CCRenderTexture using a CCSprite that has some transparency?

I'm having trouble drawing to a CCRenderTexture with a texture that includes transparency due to the blending that I've used. The sprite that I am drawing with has a blending function of: ...
0
votes
1answer
120 views

Overlapping 2 transparent Texture2Ds in OpenGL ES

I'm trying to make a 2D game for the iPad with OpenGL. I'm new to OpenGL in general so this blending stuff is new. My drawing code looks like this: static CGFloat r=0; r+=2.5; r=remainder(r, 360); ...
0
votes
1answer
114 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
0answers
484 views

alpha blending in opengl ES 1.0

Im working my Android map app in opengl ES and im having some blending issues. Im new at opengl/ opengl es, and im trying to figure out the correct blending enums for this particular graphic. Im ...
0
votes
2answers
884 views

cocos2d-iphone setBlendFunc()

Here is what my code look like CCSprite *sp = [CCSprite spriteWithFile:@"textureWithOneColorbackground.jpg"]; [self addChild:sp]; // Change the blending factors [sp ...
0
votes
1answer
899 views

How to set background colour on Open GL ES Android

I am currently playing about with lesson 08 here http://insanitydesign.com/wp/projects/nehe-android-ports/ I would like to change the background colour from black to white. In order to do this at ...
0
votes
1answer
617 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 ...