blob: 7f90e3e45f8514d8adb76e070c1f7e01db53a0e6 [file] [log] [blame]
void deref() {
float2x3 a = float2x3((0.0f).xxx, (0.0f).xxx);
float2x3 p = a;
float3 b = p[int(0)];
p[int(0)] = float3(1.0f, 2.0f, 3.0f);
}
void no_deref() {
float2x3 a = float2x3((0.0f).xxx, (0.0f).xxx);
float2x3 p = a;
float3 b = p[int(0)];
p[int(0)] = float3(1.0f, 2.0f, 3.0f);
}
[numthreads(1, 1, 1)]
void main() {
deref();
no_deref();
}