From 9914ca800c92e9b3fe768dec4e913a302f3d678d Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 31 Jul 2018 11:03:53 -0400 Subject: Feature/attributed binding (#621) * Typo fix, and added dxc to command line documentation. * Fix small typos. Added support for Scope to lexer. Fix bug in Token ctor. * Add support for attribute names that are scoped. * Added GLSLBindingAttribute. Make binding work through core.met.slang. * Allow [[gl::binding(binding, set)]] [[vk::binding(binding,set)]] --- source/core/token-reader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/core/token-reader.h') diff --git a/source/core/token-reader.h b/source/core/token-reader.h index aaebad756..48391738c 100644 --- a/source/core/token-reader.h +++ b/source/core/token-reader.h @@ -22,7 +22,7 @@ namespace Slang OpInc, OpDec, OpAddAssign, OpSubAssign, OpMulAssign, OpDivAssign, OpModAssign, OpShlAssign, OpShrAssign, OpOrAssign, OpAndAssign, OpXorAssign, - QuestionMark, Colon, RightArrow, At, Pound, PoundPound, + QuestionMark, Colon, RightArrow, At, Pound, PoundPound, Scope, }; class CodePosition -- cgit v1.2.3