We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When using clang format on
float x = y * +1.#INF;
clang-format will separate it to
float x = y * +1. #INF;
This is invalid HLSL code and won't allow it to be compiled.
Status