summaryrefslogtreecommitdiffstats
path: root/tests/playground/includetest.frag
blob: 99dceae1c1c3552be319a49d6bb8e975ff93cbcf (plain)
1
2
3
4
5
6
7
8
9
10
#version 440
#extension GL_GOOGLE_include_directive : enable

layout(location = 0) in vec3 v_color;
layout(location = 0) out vec4 fragColor;

void main()
{
#include "fragcolor.inc"
}