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