Issue |
126647
|
Summary |
[HLSL] Implement: Textures/TypedBuffers cannot be bound to root descriptors.
|
Labels |
new issue
|
Assignees |
joaosaffran
|
Reporter |
joaosaffran
|
This validation needs to check if Textures or TypedBuffers are not bounded to root descriptors. Example:
```HLSL
// B is TypedBuffer, but bound as a root descriptor.
Buffer<float> B : register(t0);
[RootSignature("SRV(t0)")]
void main() : SV_Target {
return B[0];
}
```
AC:
- [ ] Update Root Signature Analysis to make verification.
- [ ] Add unit testing.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs