From 251b611fef77533082165bab0b88eefa05b49fbe Mon Sep 17 00:00:00 2001 From: Connor Thomson Date: Sat, 12 Sep 2026 14:16:55 -0700 Subject: Add simple shadows --- shaders/model_wireframe.frag.slang | 2 -- 1 file changed, 2 deletions(-) (limited to 'shaders/model_wireframe.frag.slang') diff --git a/shaders/model_wireframe.frag.slang b/shaders/model_wireframe.frag.slang index bac0966..10c2a52 100644 --- a/shaders/model_wireframe.frag.slang +++ b/shaders/model_wireframe.frag.slang @@ -20,8 +20,6 @@ struct FSOutput { float4 out_color : SV_Target0; }; -// Ignores geometry normals/lighting entirely; used with the LINE fill mode -// pipeline so only the mesh edges are drawn, in pure white. FSOutput main() { FSOutput output; output.out_color = float4(1.0, 1.0, 1.0, 1.0); -- cgit v1.2.3