How can I make my background transparent with glcolor even i have enabled GL_BLEND it does not work, I am doing it in native code.Even after passing alfa value to zero it gives me white background, what am I doing wrong, is there is any alternative in gl to make background transparent. This is what I am doing right now for making background transparent.
glEnable(GL_BLEND);
glColor(255,255,255,0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
I'm doing this when combining irrlicht with vuforia, but i'm getting white background.