mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-23 11:19:40 +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
317 B
Plaintext
8 lines
317 B
Plaintext
enhanced.4.vert
|
|
enhanced.4.frag
|
|
ERROR: Linking vertex and fragment stages: Layout location qualifier must match:
|
|
vertex stage: Block: VS_OUT Instance: vs_out: "layout( location=0) out"
|
|
fragment stage: Block: VS_OUT Instance: fs_in: "layout( location=1) in"
|
|
|
|
SPIR-V is not generated for failed compile or link
|