mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-18 04:23:36 +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>
27 lines
441 B
WebGPU Shading Language
27 lines
441 B
WebGPU Shading Language
[[block]]
|
|
struct SB_RO {
|
|
arg_0 : array<u32>;
|
|
};
|
|
|
|
[[group(0), binding(1)]] var<storage, read> sb_ro : SB_RO;
|
|
|
|
fn arrayLength_cfca0a() {
|
|
var res : u32 = arrayLength(&(sb_ro.arg_0));
|
|
}
|
|
|
|
[[stage(vertex)]]
|
|
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
|
|
arrayLength_cfca0a();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
[[stage(fragment)]]
|
|
fn fragment_main() {
|
|
arrayLength_cfca0a();
|
|
}
|
|
|
|
[[stage(compute)]]
|
|
fn compute_main() {
|
|
arrayLength_cfca0a();
|
|
}
|