non functional deferred rendering and also camera paths and instanced GUIs

This commit is contained in:
Halbear 2026-06-14 13:39:49 +01:00
parent 4569b471d5
commit 2d37c574d6
25 changed files with 933 additions and 315 deletions

View file

@ -0,0 +1,8 @@
#version 450
layout(location = 0) out vec2 outTextCoord;
void main() {
outTextCoord = vec2((gl_VertexIndex << 1) & 2, gl_VertexIndex & 2);
gl_Position = vec4(outTextCoord.x * 2.0f - 1.0f, outTextCoord.y * - 2.0f + 1.0f, 0.0f, 1.0f);
}