feat: post-processing effects

This commit is contained in:
MihailRis
2025-04-05 00:41:25 +03:00
parent 22e97b1766
commit ba170035ef
19 changed files with 216 additions and 84 deletions
+10
View File
@@ -0,0 +1,10 @@
layout (location = 0) in vec2 v_position;
out vec2 v_uv;
uniform ivec2 u_screenSize;
void main(){
v_uv = v_position * 0.5 + 0.5;
gl_Position = vec4(v_position, 0.0, 1.0);
}