Cocos2d-x   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了cocos shader 之 模糊滤镜大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

效果:


VSH:

#ifdef OPENGL_ES
precision mediump vec2;
precision mediump float;
#endif

// Attributes
attribute vec3 a_position;
attribute vec2 a_texCoord;
attribute vec4 a_color;

// Varyings
#ifdef GL_ES
varying vec2 v_texCoord;
#else
varying vec2 v_texCoord;
#endif
varying vec4 v_fragmentColor;

void main()
{
    gl_Position = CC_PMatrix * vec4(a_position,1.0);
    v_texCoord = a_texCoord;
    v_fragmentColor = a_color;
}

FSH:
#ifdef GL_ES
precision mediump float;
#endif

varying vec4 v_fragmentColor;
varying vec2 v_texCoord;

uniform vec2 resolution;
//uniform float blurRadius;

vec4 blur(vec2 p)
{
    vec4 col = vec4(0);
    vec2 unit = 1.0/resolution;
    float r = 10.0;
    float nCount = 0.0;
    for (float x = -r; x < r; ++X) {
        for (float y = -r; y < r; ++y) {
            float weight = (r-abs(X)) * (r-abs(y));
            col += texture2D(CC_Texture0,p + vec2(x*unit.x,y*unit.y))*weight;
            nCount += weight;
        }
    }
    return col / nCount;
}

void main(void)
{
    gl_FragColor = blur(v_texCoord);
}

大佬总结

以上是大佬教程为你收集整理的cocos shader 之 模糊滤镜全部内容,希望文章能够帮你解决cocos shader 之 模糊滤镜所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。