Added missing stencil outline example shaders

This commit is contained in:
saschawillems 2017-08-22 21:07:17 +02:00
parent 2020c9548f
commit f452839b92
8 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#version 450
layout (location = 0) out vec4 outFragColor;
void main()
{
outFragColor = vec4(vec3(1.0), 1.0);
}