summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/400.vert
blob: 2c3dd0424fe1237eae7df6fbe3c17b2554e260e8 (plain)
1
2
3
4
5
6
7
8
9
#version 400 core

in double d;   // ERROR, no doubles
in dvec3 d3;   // ERROR, no doubles
in dmat4 dm4;  // ERROR, no doubles

void main()
{
}