Get zbar working again

This commit is contained in:
Benjamin Schaaf
2021-04-26 18:09:04 +10:00
parent f9e6576266
commit 44fc390b99
8 changed files with 329 additions and 254 deletions

9
data/solid.vert Normal file
View File

@@ -0,0 +1,9 @@
#ifdef GL_ES
precision mediump float;
#endif
attribute vec2 vert;
void main() {
gl_Position = vec4(vert, 0, 1);
}