diff options
Diffstat (limited to 'source/shaders')
-rw-r--r-- | source/shaders/blend_test.fs.glsl (renamed from source/shaders/stencil_outline.fs.glsl) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/shaders/stencil_outline.fs.glsl b/source/shaders/blend_test.fs.glsl index 63d6a75..23daa14 100644 --- a/source/shaders/stencil_outline.fs.glsl +++ b/source/shaders/blend_test.fs.glsl @@ -8,5 +8,7 @@ uniform vec4 hlt_color; out vec4 FragColor; void main() { - FragColor = hlt_color; + vec4 tex = texture(TexId, TexCoords); + + FragColor = tex; } |