cognitive-renderer-gl 0.0.2

GL rendering for `cognitive`
Documentation
1
2
3
4
5
6
7
8
9
10
11
#version 100

//! Fragment shader source code for OpenGL ES 2.0 (GLSL ES 100)

varying highp vec2 v_texcoords;
uniform sampler2D texture;

void main(void)
{
    gl_FragColor = texture2D(texture, v_texcoords);
}