Initial draft of sokol backend

This commit is contained in:
2024-06-30 20:50:50 -04:00
parent f6a3f50fa1
commit 2cdc85af43
5 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
in vec2 v_position;
in vec2 v_texture;
// in vec4 v_elem;
out vec2 uv;
void main()
{
uv = vec2( v_texture.x, 1 - v_texture.y );
gl_Position = vec4( v_position, 0.0, 1.0 );
}