summaryrefslogtreecommitdiff
path: root/shaders/model_wireframe.frag.slang
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/model_wireframe.frag.slang')
-rw-r--r--shaders/model_wireframe.frag.slang2
1 files changed, 0 insertions, 2 deletions
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);