.frag file extension added for JavaScript with some new samples

This commit is contained in:
Paul Chaignon
2014-05-07 13:42:46 +02:00
parent d0d40c0d2e
commit a148d52aed
6 changed files with 59530 additions and 59421 deletions

View File

@@ -0,0 +1,9 @@
static const char* SimpleFragmentShader = STRINGIFY(
varying vec4 FrontColor;
void main(void)
{
gl_FragColor = FrontColor;
}
);