You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

glsl.go 2.0KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package g
  2. import (
  3. . "github.com/alecthomas/chroma" // nolint
  4. "github.com/alecthomas/chroma/lexers/internal"
  5. )
  6. // GLSL lexer.
  7. var GLSL = internal.Register(MustNewLexer(
  8. &Config{
  9. Name: "GLSL",
  10. Aliases: []string{"glsl"},
  11. Filenames: []string{"*.vert", "*.frag", "*.geo"},
  12. MimeTypes: []string{"text/x-glslsrc"},
  13. },
  14. Rules{
  15. "root": {
  16. {`^#.*`, CommentPreproc, nil},
  17. {`//.*`, CommentSingle, nil},
  18. {`/(\\\n)?[*](.|\n)*?[*](\\\n)?/`, CommentMultiline, nil},
  19. {`\+|-|~|!=?|\*|/|%|<<|>>|<=?|>=?|==?|&&?|\^|\|\|?`, Operator, nil},
  20. {`[?:]`, Operator, nil},
  21. {`\bdefined\b`, Operator, nil},
  22. {`[;{}(),\[\]]`, Punctuation, nil},
  23. {`[+-]?\d*\.\d+([eE][-+]?\d+)?`, LiteralNumberFloat, nil},
  24. {`[+-]?\d+\.\d*([eE][-+]?\d+)?`, LiteralNumberFloat, nil},
  25. {`0[xX][0-9a-fA-F]*`, LiteralNumberHex, nil},
  26. {`0[0-7]*`, LiteralNumberOct, nil},
  27. {`[1-9][0-9]*`, LiteralNumberInteger, nil},
  28. {Words(`\b`, `\b`, `attribute`, `const`, `uniform`, `varying`, `centroid`, `break`, `continue`, `do`, `for`, `while`, `if`, `else`, `in`, `out`, `inout`, `float`, `int`, `void`, `bool`, `true`, `false`, `invariant`, `discard`, `return`, `mat2`, `mat3mat4`, `mat2x2`, `mat3x2`, `mat4x2`, `mat2x3`, `mat3x3`, `mat4x3`, `mat2x4`, `mat3x4`, `mat4x4`, `vec2`, `vec3`, `vec4`, `ivec2`, `ivec3`, `ivec4`, `bvec2`, `bvec3`, `bvec4`, `sampler1D`, `sampler2D`, `sampler3DsamplerCube`, `sampler1DShadow`, `sampler2DShadow`, `struct`), Keyword, nil},
  29. {Words(`\b`, `\b`, `asm`, `class`, `union`, `enum`, `typedef`, `template`, `this`, `packed`, `goto`, `switch`, `default`, `inline`, `noinline`, `volatile`, `public`, `static`, `extern`, `external`, `interface`, `long`, `short`, `double`, `half`, `fixed`, `unsigned`, `lowp`, `mediump`, `highp`, `precision`, `input`, `output`, `hvec2`, `hvec3`, `hvec4`, `dvec2`, `dvec3`, `dvec4`, `fvec2`, `fvec3`, `fvec4`, `sampler2DRect`, `sampler3DRect`, `sampler2DRectShadow`, `sizeof`, `cast`, `namespace`, `using`), Keyword, nil},
  30. {`[a-zA-Z_]\w*`, Name, nil},
  31. {`\.`, Punctuation, nil},
  32. {`\s+`, Text, nil},
  33. },
  34. },
  35. ))