game-renderer.frag 153 Bytes
uniform sampler2D sTexture;
varying highp vec2 vTexCoord;

void main()
{
  gl_FragColor = texture2D( sTexture, vTexCoord ) * vec4(1.2, 1.2, 1.2, 1.0);
}