2D glsl着色器转换

时间:2015-04-18 09:38:01

标签: java opengl libgdx glsl shader

我想创建一个着色器,用libgdx模拟2D场景构建中的伪3D水面。我们的想法是重新创建以下效果:

http://forums.tigsource.com/index.php?topic=40539.msg1104986#msg1104986

但是我坚持创建梯形形状,我想我不知道如何在opengl着色器上计算纹理坐标。我可以修改顶点着色器中的顶点,还是可以替换片段着色器上的纹理?

这是我已经完成的测试但是没有按预期工作。

顶点着色器:

attribute vec4 a_position;
attribute vec4 a_color;
attribute vec2 a_texCoord0;

uniform mat4 u_projTrans;

varying vec4 v_color;
varying vec2 v_texCoord0;

void main()
{
    v_color = a_color;
    float factor = (a_texCoord0.x - 0.5) * (a_texCoord0.y);
    v_texCoord0 = a_texCoord0;
    v_texCoord0.x += factor;
    gl_Position =  u_projTrans * a_position;
}

片段着色器只是一个直通

varying vec4 v_color;
varying vec2 v_texCoord0;

uniform sampler2D u_texture;

void main()
{
    gl_FragColor = v_color * texture2D(u_texture, v_texCoord0);
}

和结果图像

the bad perspective result

我确信我的方法太天真了。

1 个答案:

答案 0 :(得分:0)

最后,我决定只使用片段着色器来实现效果。 通过对Y轴应用X位移来完成假深度计算。

这是snipet:

// simulate 3D surface
vec2 new_coord = v_texCoord0;
// calculate the stretching factor
float factor = ((0.5 - new_coord.x) * new_coord.y);
// apply the factor and stretch the image
new_coord.x += factor;

gl_FragColor = texture2D(u_texture, new_coord);