blob: 78e3f87a50a7daadf36f6152944acde0b3f18536 [file] [log] [blame]
SKIP: FAILED
ByteAddressBuffer rarr : register(t0);
void tint_symbol() {
int idx = 3;
int x = int2(1, 2)[idx];
}
void tint_symbol_1() {
int idx = 4;
float2 x = float2x2(float2(1.0f, 2.0f), float2(3.0f, 4.0f))[idx];
}
void fixed_size_array() {
int v[2] = {1, 2};
int idx = 3;
int arr[2] = v;
int x = arr[idx];
}
void runtime_size_array() {
int idx = -1;
float x = asfloat(rarr.Load((0u + (uint(idx) * 4u))));
}
[numthreads(1, 1, 1)]
void f() {
tint_symbol();
tint_symbol_1();
fixed_size_array();
runtime_size_array();
}
FXC validation failure:
<scrubbed_path>(5,11-25): error X3504: array index out of bounds
tint executable returned error: exit status 1