dawn-cmake/test/intrinsics/gen/arrayLength/721c9d.wgsl.expected.hlsl
Ben Clayton aba42ed362 Add arrayLength() intrinsic that accepts a pointer argument
The old non-pointer argument overload remains, but is now deprecated.

Bug: tint:806
Change-Id: Ic917ccec0f162414ce1b03df49e332ad84d8060f
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/54061
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: David Neto <dneto@google.com>
2021-06-10 18:43:04 +00:00

35 lines
722 B
HLSL

intrinsics/gen/arrayLength/721c9d.wgsl:31:18 warning: use of deprecated intrinsic
var res: u32 = arrayLength(sb.arg_0);
^^^^^^^^^^^
struct tint_symbol {
float4 value : SV_Position;
};
ByteAddressBuffer sb : register(t0, space0);
void arrayLength_721c9d() {
uint tint_symbol_2 = 0u;
sb.GetDimensions(tint_symbol_2);
const uint tint_symbol_3 = ((tint_symbol_2 - 0u) / 4u);
uint res = tint_symbol_3;
}
tint_symbol vertex_main() {
arrayLength_721c9d();
const tint_symbol tint_symbol_4 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
return tint_symbol_4;
}
void fragment_main() {
arrayLength_721c9d();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
arrayLength_721c9d();
return;
}