mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-11 07:35:55 +00:00
The original problem appears to be fixed. Fixed: tint:219 Change-Id: I8d16fbb715da3ca149769699c86f86a4bed85b4f Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/57703 Auto-Submit: Ben Clayton <bclayton@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
20 lines
286 B
Plaintext
20 lines
286 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
float x_200(thread float2* const x_201) {
|
|
float const x_212 = (*(x_201)).x;
|
|
return x_212;
|
|
}
|
|
|
|
void main_1() {
|
|
float2 x_11 = 0.0f;
|
|
float const x_12 = x_200(&(x_11));
|
|
return;
|
|
}
|
|
|
|
kernel void tint_symbol() {
|
|
main_1();
|
|
return;
|
|
}
|
|
|