mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-14 22:01:04 +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()
|
|
{
|
|
}
|