varying vec2 vUv;
varying float vDisplacement;
uniform sampler2D tImage;
void main() {
vec4 color = texture2D(tImage, vUv);
gl_FragColor = color;
}