mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 04:05:40 +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>
11 lines
119 B
HLSL
11 lines
119 B
HLSL
int f(int a, int b, int c) {
|
|
return ((a * b) + c);
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main() {
|
|
f(1, 2, 3);
|
|
return;
|
|
}
|
|
|