Add minimap. Some perforarmance tweaks especially around bread crumbs.

This commit is contained in:
2025-12-20 19:01:05 -05:00
parent 7a3705d342
commit 7235d756dc
6 changed files with 369 additions and 4 deletions

10
minimapshader.glsl Normal file
View File

@@ -0,0 +1,10 @@
#version 460 core
// Vertex shader for minimap overlay geometry (lines/quads) in screen space.
layout (location = 0) in vec2 aPos;
uniform mat4 projection;
void main()
{
gl_Position = projection * vec4(aPos, 0.0, 1.0);
}