Jacajack / vscode-glsl-linter

GLSL linter for Code
5 stars 1 forks source link

GLSL Linter for VSCode

GLSL Linter provides linting capability for OpenGL shading language in VSCode.

Requirements

This extension requires external GLSL reference compiler. You can find it here.

Extension Settings

Example configuration:

"glsl-linter.validatorPath": "/usr/local/bin/glslangValidator",
"glsl-linter.fileExtensions": {
    ".fs.glsl": "frag",
    ".vs.glsl": "vert",
    ".tes.glsl": "tese",
    ".tcs.glsl": "tesc",
    ".gs.glsl": "geom"
}