mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 09:06:11 +00:00
There's a reason the overload of `ctx.Replace()` that takes a pointer to the replacement is deprecated - it doesn't play well when used as part of another replacement. Switch to using the callback overload of Replace() to fix bad transform output. Bug: tint:1386647 Change-Id: I94292eeb65d24d7b2446b16b8b4ad13bdd27965a Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/111000 Auto-Submit: Ben Clayton <bclayton@google.com> Commit-Queue: James Price <jrprice@google.com> Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
19 lines
380 B
Plaintext
19 lines
380 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
uint tint_mod(uint lhs, uint rhs) {
|
|
return (lhs % select(rhs, 1u, (rhs == 0u)));
|
|
}
|
|
|
|
void f_inner(uint3 v) {
|
|
uint const tint_symbol = v[0];
|
|
uint const tint_symbol_1 = tint_mod(v[1], 1u);
|
|
uint const l = (tint_symbol << (tint_symbol_1 & 31u));
|
|
}
|
|
|
|
kernel void f(uint3 v [[thread_position_in_grid]]) {
|
|
f_inner(v);
|
|
return;
|
|
}
|
|
|