tgjones / HlslTools

A Visual Studio extension that provides enhanced support for editing High Level Shading Language (HLSL) files
http://timjones.io/blog/archive/2016/04/25/hlsl-tools-for-visual-studio-v1.0-released
Other
553 stars 95 forks source link

'out' keyword autoreplaced with 'AABBOutsideFrustum' in IntelliSense #233

Open strandborg opened 1 year ago

strandborg commented 1 year ago

When writing function declarations that use the 'out' keyword, it is automatically transformed into 'AABBOutsideFrustum' as that's the first suggestion.

To reproduce, try to type the following in an HLSL file:

void MyFunc(int a, out int b)

After hitting spacebar after 'out', the keyword gets autocorrected into 'AABBOutsideFrustum' and has to be manually changed.