changes to librw layer, GLES now runtime choice

This commit is contained in:
aap 2020-11-18 10:27:55 +01:00
commit 82b0103c67
30 changed files with 563 additions and 181 deletions

View file

@ -1,13 +1,9 @@
layout(location = 0) in vec3 in_pos;
layout(location = 1) in vec3 in_normal;
layout(location = 2) in vec4 in_color;
layout(location = 3) in vec2 in_tex0;
layout(location = 4) in vec2 in_tex1;
VSIN(ATTRIB_POS) vec3 in_pos;
out vec4 v_color;
out vec2 v_tex0;
out vec2 v_tex1;
out float v_fog;
VSOUT vec4 v_color;
VSOUT vec2 v_tex0;
VSOUT vec2 v_tex1;
VSOUT float v_fog;
void
main(void)