More rendering stuff

This commit is contained in:
Anuken
2020-01-10 20:27:10 -05:00
parent 49137d4f58
commit f918cdeced
3 changed files with 104 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifdef GL_ES
precision mediump float;
#endif
varying vec4 v_col;
void main(){
gl_FragColor = v_col;
}