more microui

This commit is contained in:
2026-03-25 17:48:46 +05:45
parent 5bc235f1ab
commit 00ae6cbc4e
5 changed files with 239 additions and 42 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ void main(){
vec2 ndc;
ndc.x = (screen_pos.x / u_resolution.x) * 2.0 - 1.0;
ndc.y = 1.0 - (screen_pos.y / u_resolution.x) * 2.0;
ndc.y = 1.0 - (screen_pos.y / u_resolution.y) * 2.0;
gl_Position = vec4(ndc, 0.0, 1.0);
TexCoord = aTexCoord;