...

Source file src/github.com/alecthomas/chroma/lexers/g/glsl.go

Documentation: github.com/alecthomas/chroma/lexers/g

     1  package g
     2  
     3  import (
     4  	. "github.com/alecthomas/chroma" // nolint
     5  	"github.com/alecthomas/chroma/lexers/internal"
     6  )
     7  
     8  // GLSL lexer.
     9  var GLSL = internal.Register(MustNewLazyLexer(
    10  	&Config{
    11  		Name:      "GLSL",
    12  		Aliases:   []string{"glsl"},
    13  		Filenames: []string{"*.vert", "*.frag", "*.geo"},
    14  		MimeTypes: []string{"text/x-glslsrc"},
    15  	},
    16  	glslRules,
    17  ))
    18  
    19  func glslRules() Rules {
    20  	return Rules{
    21  		"root": {
    22  			{`^#.*`, CommentPreproc, nil},
    23  			{`//.*`, CommentSingle, nil},
    24  			{`/(\\\n)?[*](.|\n)*?[*](\\\n)?/`, CommentMultiline, nil},
    25  			{`\+|-|~|!=?|\*|/|%|<<|>>|<=?|>=?|==?|&&?|\^|\|\|?`, Operator, nil},
    26  			{`[?:]`, Operator, nil},
    27  			{`\bdefined\b`, Operator, nil},
    28  			{`[;{}(),\[\]]`, Punctuation, nil},
    29  			{`[+-]?\d*\.\d+([eE][-+]?\d+)?`, LiteralNumberFloat, nil},
    30  			{`[+-]?\d+\.\d*([eE][-+]?\d+)?`, LiteralNumberFloat, nil},
    31  			{`0[xX][0-9a-fA-F]*`, LiteralNumberHex, nil},
    32  			{`0[0-7]*`, LiteralNumberOct, nil},
    33  			{`[1-9][0-9]*`, LiteralNumberInteger, nil},
    34  			{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},
    35  			{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},
    36  			{`[a-zA-Z_]\w*`, Name, nil},
    37  			{`\.`, Punctuation, nil},
    38  			{`\s+`, Text, nil},
    39  		},
    40  	}
    41  }
    42  

View as plain text