mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
ca0d54d51b
Specifically, make GLSL link error messages more specific and output only information relevant to the error. Also change type printing to more closely reflect GLSL syntax. This is the default for link error messages, but must me enabled with the new option --enhanced-msgs for compilation error messages. Also with --enhanced-msgs, only emit one error message per source line.
8 lines
71 B
GLSL
8 lines
71 B
GLSL
#version 450
|
|
|
|
void main()
|
|
{
|
|
vec3 color = vec3(0.0,0.0,0.0,1.0);
|
|
}
|
|
|