Enhance readability of error messages for GLSL
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.
This commit is contained in:
parent
c34bb3b6c5
commit
ca0d54d51b
56 changed files with 1055 additions and 374 deletions
|
|
@ -207,8 +207,9 @@ Linked geometry stage:
|
|||
|
||||
Linked fragment stage:
|
||||
|
||||
WARNING: Linking unknown stage stage: Matched shader interfaces are using different instance names.
|
||||
blockName1: "layout( column_major std140) uniform 2-element array of block{layout( column_major std140) uniform 4-component vector of float a, layout( column_major std140) uniform 2-component vector of float b}" versus blockName2: "layout( column_major std140) uniform 2-element array of block{layout( column_major std140) uniform 4-component vector of float a, layout( column_major std140) uniform 2-component vector of float b}"
|
||||
WARNING: Linking unknown stage and fragment stages: Matched shader interfaces are using different instance names.
|
||||
unknown stage stage: Block: crossStageBlock2 Instance: blockName1: ""
|
||||
fragment stage: Block: crossStageBlock2 Instance: blockName2: ""
|
||||
|
||||
Shader version: 460
|
||||
0:? Sequence
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue