All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
2 runtime ale_linters/glsl/glslang.vim
4 Execute(The glsl glslang handler should parse lines correctly):
11 \ 'text': '''gl_ModelViewProjectionMatrix'' : undeclared identifier',
17 \ 'text': '''switch'' : last case/default label not followed by statements',
20 \ ale_linters#glsl#glslang#Handle(bufnr(''), [
21 \ 'ERROR: 0:4: ''gl_ModelViewProjectionMatrix'' : undeclared identifier',
22 \ 'WARNING: 0:121: ''switch'' : last case/default label not followed by statements',
23 \ 'ERROR: 2 compilation errors. No code generated.',
26 Execute(The glsl glslang handler should parse lines with options -V or -G correctly):
33 \ 'text': '''non-opaque uniforms outside a block'' : not allowed when using GLSL for Vulkan',
39 \ 'text': '''__shininess'' : identifiers containing consecutive underscores ("__") are reserved',
42 \ ale_linters#glsl#glslang#Handle(bufnr(''), [
44 \ 'ERROR: shader.vert:7: ''non-opaque uniforms outside a block'' : not allowed when using GLSL for Vulkan',
45 \ 'WARNING: shader.vert:14: ''__shininess'' : identifiers containing consecutive underscores ("__") are reserved',
46 \ 'ERROR: 1 compilation errors. No code generated.',
47 \ 'SPIR-V is not generated for failed compile or link',