From bd49bd525f4c6c6c15c4142bf42d1dd38be6fc16 Mon Sep 17 00:00:00 2001 From: pryazha Date: Sun, 19 Jan 2025 17:33:44 +0500 Subject: initial commit --- stencil/shaders/outline.fs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 stencil/shaders/outline.fs (limited to 'stencil/shaders/outline.fs') diff --git a/stencil/shaders/outline.fs b/stencil/shaders/outline.fs new file mode 100644 index 0000000..b935555 --- /dev/null +++ b/stencil/shaders/outline.fs @@ -0,0 +1,9 @@ +#version 330 core + +out vec4 frag_color; + +void +main(void) +{ + frag_color = vec4(0.76f, 0.47f, 0.84f, 1.0f); +} -- cgit v1.2.3