X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;ds=sidebyside;f=shaders%2Fdebug.f.glsl;fp=shaders%2Fdebug.f.glsl;h=79bdba64040920af5913d9d8631773a941bde07a;hb=0f6519c2606f2863d9c7ee8b9754b9f23df281ab;hp=0000000000000000000000000000000000000000;hpb=05d269a194496bcef85da78652b947f5bf1c9bcf;p=demo diff --git a/shaders/debug.f.glsl b/shaders/debug.f.glsl new file mode 100644 index 0000000..79bdba6 --- /dev/null +++ b/shaders/debug.f.glsl @@ -0,0 +1,8 @@ +#version 450 + +out vec4 color; + +void main() +{ + color = vec4(1.0, 0.0, 1.0, 1.0); +}