Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / tests / examplefiles / glsl / glsl.vert.output
Size: Mime:
'/* Vertex shader */' Comment.Multiline
'\n'          Text.Whitespace

'uniform'     Keyword
' '           Text.Whitespace
'float'       Keyword.Type
' '           Text.Whitespace
'waveTime'    Name
';'           Punctuation
'\n'          Text.Whitespace

'uniform'     Keyword
' '           Text.Whitespace
'float'       Keyword.Type
' '           Text.Whitespace
'waveWidth'   Name
';'           Punctuation
'\n'          Text.Whitespace

'uniform'     Keyword
' '           Text.Whitespace
'float'       Keyword.Type
' '           Text.Whitespace
'waveHeight'  Name
';'           Punctuation
'\n \n'       Text.Whitespace

'void'        Keyword.Type
' '           Text.Whitespace
'main'        Name
'('           Punctuation
'void'        Keyword.Type
')'           Punctuation
'\n'          Text.Whitespace

'{'           Punctuation
'\n    '      Text.Whitespace
'vec4'        Keyword.Type
' '           Text.Whitespace
'v'           Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'vec4'        Keyword.Type
'('           Punctuation
'gl_Vertex'   Name.Builtin
')'           Punctuation
';'           Punctuation
'\n\n    '    Text.Whitespace
'v'           Name
'.'           Punctuation
'z'           Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'sin'         Name
'('           Punctuation
'waveWidth'   Name
' '           Text.Whitespace
'*'           Operator
' '           Text.Whitespace
'v'           Name
'.'           Punctuation
'x'           Name
' '           Text.Whitespace
'+'           Operator
' '           Text.Whitespace
'waveTime'    Name
')'           Punctuation
' '           Text.Whitespace
'*'           Operator
' '           Text.Whitespace
'cos'         Name
'('           Punctuation
'waveWidth'   Name
' '           Text.Whitespace
'*'           Operator
' '           Text.Whitespace
'v'           Name
'.'           Punctuation
'y'           Name
' '           Text.Whitespace
'+'           Operator
' '           Text.Whitespace
'waveTime'    Name
')'           Punctuation
' '           Text.Whitespace
'*'           Operator
' '           Text.Whitespace
'waveHeight'  Name
';'           Punctuation
'\n\n    '    Text.Whitespace
'gl_Position' Name.Builtin
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'gl_ModelViewProjectionMatrix' Name.Builtin
' '           Text.Whitespace
'*'           Operator
' '           Text.Whitespace
'v'           Name
';'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace