wudixiaop/ShaderlabVS

Name matching should be case sensitive

Opened this issue · 0 comments

Right now it's ignoring the case of words but in reality all of them are case sentive, "Color" is not the same as "color" so something like this:

struct vertexInput { float4 color : Color; }

will mark both the variable name and the semantic color as being a keyword.

Is there any easy way to deactivate this behavior? I tried compiling everything changing the "IgnoreCase" comparisons but doing so make the extension to stop highlighting altogether.