/vscode-glsllint

VSCode extension to lint GLSL shading language files

Primary LanguageTypeScriptMIT LicenseMIT

GLSL Linting for Visual Studio Code

This extension supports linting of GLS (OpenGL Shading Language). It uses the OpenGL and OpenGL ES shader validator Every shader type which is supported by the glslangValidator can be validated.

Features

Requirements

Extension Settings

This extension contributes the following settings: All settings are prefixed with glsllint.

Setting Default Description
glslangValidatorPath "" The path to the glslangValidator executable, let it empty when have it in $PATH
glslangValidatorArgs "" Arguments for the glslangValidator executable
additionalStageAssociations {} Additonal file extension -> glslangValidator stage mapping. Format: {".EXT": "STAGEID"}, example see below
supportedLangsWithStringLiterals ["javascript", "javascriptreact", "typescript", "typescriptreact", "elm" ] VSCode language id's to support for string literal validation
linkShader true Link all input files together to form a single module ('-l' option for glslangValidator, used for includes)
useIncludeDirOfFile true Add -I[DIR_OF_FILE] to the glslangValidator command
languageSettings.[LANGID] see below Settings per language VScode language ID, there are built in configurations for JS, JSX, TS, TSX and ELM.
glslifyPattern #pragma glslify: Regex pattern for glslify pragma
glslifyAutoOpenOnError true Opens the glslified code when there is a linting error
glslifyOptions {} Specify glslify options used in glslify.compile() if basedir is not set then the workspace root path is used

additionalStageAssociations example

"glsllint.additionalStageAssociations": {
  ".fs": "frag",
  ".vs": "vert"
}

Built-in mappings:

{
  ".vert": "vert", // for a vertex shader
  ".vs": "vert", // for a vertex shader
  ".frag": "frag", // for a fragment shader
  ".fs": "frag", // for a fragment shader
  ".gs": "geom", // for a geometry shader
  ".geom": "geom", // for a geometry shader
  ".comp": "comp", // for a compute shader
  ".tesc": "tesc", // for a tessellation control shader
  ".tese": "tese", // for a tessellation evaluation shader
  ".rgen": "rgen", // for a ray generation shader
  ".rint": "rint", // for a ray intersection shader
  ".rahit": "rahit", // for a ray any hit shader
  ".rchit": "rchit", // for a ray closest shader
  ".rmiss": "rmiss", // for a ray miss shader
  ".rcall": "rcall", // for a ray callable shader
  ".mesh": "mesh", // for a mesh shader
  ".task": "task" // for a task shader
}

Available stages:

["vert", "frag", "geom", "comp", "tesc", "tese", "rgen", "rint", "rahit", "rchit", "rmiss", "rcall", "mesh", "task"]

languageSettings notation

"glsllint.languageSettings": {
  "LANGID": {
    "parser": "TSAST|REGEX",
    "patternStart": "[START_REGEX_PATTERN]", // only used when parser: REGEX
    "patternEnd": "[END_REGEX_PATTERN]" // only used when parser: REGEX
  }
}

languageSettings default

"glsllint.languageSettings": {
  "javascript": {
    "parser": "TSAST"
  },
  "javascriptreact": {
    "parser": "TSAST"
  },
  "typescript": {
    "parser": "TSAST"
  },
  "typescriptreact": {
    "parser": "TSAST"
  },
  "elm": {
    "parser": "REGEX",
    "patternStart": "\\[glsl",
    "patternEnd": "\\|\\]"
  }
}

Shader code in string literals

  • This is supported in .js, .jsx, .ts, .tsx
  • Just write the shader code in string literals either single/double qoutes or backticks (no expression interpolation yet!)
  • The stage is tried to detected automatically, if this fails then just put a #pragma into the shader string literal code: #pragma vscode_glsllint_stage : STAGE

Example:

const shader_code = `
    #version 460 core

    #pragma vscode_glsllint_stage : frag //pragma to set STAGE to 'frag'

    out vec4 FragColor;

    in vec4 color;

    void main(void) {
      FragColor = color;
    }
`;