https://github.com/shader-slang/slang
Raw File
Tip revision: 13ff0bd345990c0fdfb7b52ebd5339cddb04889e authored by Tim Foley on 03 March 2021, 19:45:39 UTC
Add GLSL/SPIR-V support got GetAttributeAtVertex (#1733)
Tip revision: 13ff0bd
lexer-comments.slang
//TEST:SIMPLE:
// confirming that the lexer handles comments correctly

// line comment

/* block comment
*/

/* block comments don't nest
   /*
*/

float f(float f) { return f; }
back to top