crayon 0.7.1

A small, portable and extensible game framework.
Documentation
1
2
3
4
5
6
7
8
9
10
#version 100
precision lowp float;

varying vec2 v_Texcoord;

uniform sampler2D renderedTexture;

void main() {
    gl_FragColor = vec4(texture2D( renderedTexture, v_Texcoord ).xyz, 1.0);
}