Update readme

This commit is contained in:
2025-01-10 11:01:57 -05:00
parent e23935db5b
commit 22cf5c653b
3 changed files with 26 additions and 20 deletions

View File

@ -5,6 +5,10 @@ out vec2 uv;
void main()
{
uv = vec2( v_texture.x, 1 - v_texture.y );
#if SOKOL_GLSL
uv = vec2( v_texture.x, v_texture.y );
#else
uv = vec2( v_texture.x, 1.0 - v_texture.y );
#endif
gl_Position = vec4( v_position, 0.0, 1.0 );
}