We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sample[x](uv)
from https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/sm5-object-texture2dms-sampleoperatorindex
Texture2DMS<float4, 8> s_msTexture; float4 main( float2 tcoord : TEXCOORD0 ) : SV_Target { return s_msTexture.sample[2][tcoord]; }
results in
syntax error #1: mismatched input 'sample' expecting {'::', Identifier} (sample is a keyword)
Also to add in src/Texture2DMSto2DCodeMutator.cpp
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/sm5-object-texture2dms-sampleoperatorindex
results in
Also to add in src/Texture2DMSto2DCodeMutator.cpp
The text was updated successfully, but these errors were encountered: