mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 19:55:37 +00:00
Fixed: tint:871 Change-Id: I01e275686094611d67a54735593320bce16705c3 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53681 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
int f(int a, int b, int c) {
|
|
return ((a * b) + c);
|
|
}
|
|
|
|
kernel void tint_symbol() {
|
|
(void) f(1, 2, 3);
|
|
return;
|
|
}
|
|
|