admin管理员组文章数量:1344334
Alright, first off, I'm pretty new at GLSL shaders, and I'm trying to wrap my head around the following shader
#ifdef GL_ES
//precision mediump float;
precision highp float;
#endif
uniform vec2 uTimes;
varying vec2 texCoord;
varying vec2 screenCoord;
void main(void) {
vec3 col;
float c;
vec2 tmpv = texCoord * vec2(0.8, 1.0) - vec2(0.95, 1.0);
c = exp(-pow(length(tmpv) * 1.8, 2.0));
col = mix(vec3(0.02, 0.0, 0.03), vec3(0.96, 0.98, 1.0) * 1.5, c);
gl_FragColor = vec4(col * 0.5, 0);
}
So far, I know it gives me a radial gradient (perhaps). What I'd really like to know is how to make it pletely transparent. I'm thinking that I need a vec4 for that, right?
Alright, first off, I'm pretty new at GLSL shaders, and I'm trying to wrap my head around the following shader
#ifdef GL_ES
//precision mediump float;
precision highp float;
#endif
uniform vec2 uTimes;
varying vec2 texCoord;
varying vec2 screenCoord;
void main(void) {
vec3 col;
float c;
vec2 tmpv = texCoord * vec2(0.8, 1.0) - vec2(0.95, 1.0);
c = exp(-pow(length(tmpv) * 1.8, 2.0));
col = mix(vec3(0.02, 0.0, 0.03), vec3(0.96, 0.98, 1.0) * 1.5, c);
gl_FragColor = vec4(col * 0.5, 0);
}
So far, I know it gives me a radial gradient (perhaps). What I'd really like to know is how to make it pletely transparent. I'm thinking that I need a vec4 for that, right?
Share Improve this question asked Aug 26, 2013 at 8:35 Alex WeylandAlex Weyland 1772 silver badges15 bronze badges1 Answer
Reset to default 10You need to turn on the blending.
See http://www.senchalabs/philogl/PhiloGL/examples/lessons/8/ and http://learningwebgl./blog/?p=859.
Without blending, depth and color buffers will be updated without taking care what was previously in the buffer, it will just overwrite data. With blending on, and depending on what type of blending function are you using, buffers will be updated with data that takes previsouly rendered data into a count.
This is the part that is interesting for you:
gl.blendFunc(gl.SRC_ALPHA, gl.ONE);
gl.enable(gl.BLEND);
gl.disable(gl.DEPTH_TEST);
Hope this helps.
本文标签: javascriptWebGL fragment shader opacityStack Overflow
版权声明:本文标题:javascript - WebGL fragment shader opacity - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799015a2540962.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论