Moved to package prefixes and added src split for resouces

This commit is contained in:
Willem 2022-02-04 18:35:05 +01:00
parent 58264ebe4c
commit 45caf26987
45 changed files with 22 additions and 24 deletions

View file

@ -0,0 +1,9 @@
#ifdef GL_ES
precision mediump float;
#endif
uniform vec4 u_color;
void main() {
gl_FragColor = vec4(u_color);
}

View file

@ -0,0 +1,10 @@
attribute vec3 a_position;
attribute vec3 a_normal;
attribute vec2 a_texCoord0;
uniform mat4 u_worldTrans;
uniform mat4 u_projTrans;
void main() {
gl_Position = u_projTrans * u_worldTrans * vec4(a_position, 1.0);
}