mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-26 16:33:33 +00:00
Instead of just generating pointers to functions, generate pointers to all permuted storage types and accesses. Change-Id: I930b20150d823877eaf72dd7cac850078fe22f35 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/54656 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com> Reviewed-by: David Neto <dneto@google.com>
30 lines
575 B
HLSL
30 lines
575 B
HLSL
ByteAddressBuffer sb_ro : register(t1, space0);
|
|
|
|
void arrayLength_a0f5ca() {
|
|
uint tint_symbol_2 = 0u;
|
|
sb_ro.GetDimensions(tint_symbol_2);
|
|
const uint tint_symbol_3 = ((tint_symbol_2 - 0u) / 4u);
|
|
uint res = tint_symbol_3;
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
tint_symbol vertex_main() {
|
|
arrayLength_a0f5ca();
|
|
const tint_symbol tint_symbol_4 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
|
|
return tint_symbol_4;
|
|
}
|
|
|
|
void fragment_main() {
|
|
arrayLength_a0f5ca();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
arrayLength_a0f5ca();
|
|
return;
|
|
}
|