first build attempt

This commit is contained in:
2026-04-23 08:05:03 -07:00
parent a75186cab6
commit f68524a6ae
125 changed files with 23271 additions and 463 deletions

18
build/shaders/bloom.frag Normal file
View File

@@ -0,0 +1,18 @@
/*
* MIT License
* Author: Mark Allyn
*
* bloom.frag — stub for a future dedicated two-pass Gaussian bloom.
* Currently bloom is applied inline in phosphor.frag.
* This shader is a pass-through so the CMake target compiles cleanly.
*/
#version 330 core
in vec2 vTexCoord;
out vec4 fragColor;
uniform sampler2D u_texture;
void main() {
fragColor = texture(u_texture, vTexCoord);
}