You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: