diff options
author | talha <talha@talhaamir.xyz> | 2024-04-06 20:25:30 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2024-04-06 20:25:30 +0500 |
commit | dcf84e28b5367dfa737cc2dfbf8d4c1afbf21cba (patch) | |
tree | ddec195c8813455e330934063655f51e0dea2a00 /source/shaders/stencil_outline.fs.glsl | |
parent | f2e3f39b15bd22e2aa727bf4669b6e52186e31c7 (diff) |
Completed blending
Diffstat (limited to 'source/shaders/stencil_outline.fs.glsl')
-rw-r--r-- | source/shaders/stencil_outline.fs.glsl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/source/shaders/stencil_outline.fs.glsl b/source/shaders/stencil_outline.fs.glsl deleted file mode 100644 index 63d6a75..0000000 --- a/source/shaders/stencil_outline.fs.glsl +++ /dev/null @@ -1,12 +0,0 @@ -#version 330 core - - -in vec2 TexCoords; -in vec3 VertexWorldPos; -uniform sampler2D TexId; -uniform vec4 hlt_color; -out vec4 FragColor; - -void main() { - FragColor = hlt_color; -} |