Porta tots els shaders a Vulkan i Metal

This commit is contained in:
2026-05-04 12:35:58 +02:00
parent 8d42d5741f
commit ef37a7a2e6
38 changed files with 2942 additions and 8 deletions

View File

@@ -2,7 +2,6 @@
// Shared fullscreen-triangle vertex shader for the SDL3 GPU backend.
// Emits vUV in Shadertoy convention: (0,0) bottom-left, (1,1) top-right.
// Y flipped in NDC because Vulkan/Metal point Y down by default.
layout(location = 0) out vec2 vUV;
@@ -14,5 +13,5 @@ void main() {
);
vec2 pos = positions[gl_VertexIndex];
vUV = pos * 0.5 + 0.5;
gl_Position = vec4(pos.x, -pos.y, 0.0, 1.0);
gl_Position = vec4(pos, 0.0, 1.0);
}