mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-04 19:25:47 +00:00
Added to hlsl, msl, glsl, and spirv backends. Bug: tint:1300 Change-Id: I06062bd8e4b32acbc4a8670b060a7a22bc1ae034 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/80600 Reviewed-by: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
23 lines
341 B
Plaintext
23 lines
341 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
int foo() {
|
|
return 1;
|
|
}
|
|
|
|
struct tint_array_wrapper {
|
|
float arr[4];
|
|
};
|
|
|
|
fragment void tint_symbol() {
|
|
tint_array_wrapper arr = {.arr={}};
|
|
int const tint_symbol_1 = foo();
|
|
int const a_save = tint_symbol_1;
|
|
for(; ; ) {
|
|
float const x = arr.arr[a_save];
|
|
break;
|
|
}
|
|
return;
|
|
}
|
|
|