Begin work on the glsl renderer. Renders blue blocks for chrome-rgba.

This commit is contained in:
Paul Chote
2010-11-10 22:00:58 +13:00
parent a058eb06b2
commit f2a20a182e
8 changed files with 103 additions and 77 deletions

4
glsl/rgba.frag Normal file
View File

@@ -0,0 +1,4 @@
void main()
{
gl_FragColor = vec4(0.4,0.4,0.8,1.0);
}