| 1234567891011121314151617181920212223242526272829303132333435 |
- // RUN: %dxc -T lib_6_3 -auto-binding-space 11 -default-linkage external %s | FileCheck %s
- // Make sure this fails
- // CHECK: error: local resource not guaranteed to map to unique global resource
- struct MyStruct {
- float2 a;
- int b;
- float3 c;
- };
- RWStructuredBuffer<MyStruct> a;
- RWStructuredBuffer<MyStruct> b;
- RWStructuredBuffer<MyStruct> c;
- uint test(int i, int j, int m) {
- RWStructuredBuffer<MyStruct> buf = c;
- while (i > 9) {
- while (j < 4) {
- if (i < m)
- buf = b;
- buf[j].b = i;
- j++;
- }
- if (m > j)
- buf = a;
- buf[m].b = i;
- i--;
- }
- buf[i].b = j;
- uint dim = 0;
- uint stride = 0;
- buf.GetDimensions(dim, stride);
- return stride;
- }
|