mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-23 19:29:44 +00:00
10 lines
144 B
GLSL
10 lines
144 B
GLSL
|
#version 400 core
|
||
|
|
||
|
in double d; // ERROR, no doubles
|
||
|
in dvec3 d3; // ERROR, no doubles
|
||
|
in dmat4 dm4; // ERROR, no doubles
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
}
|