mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-20 18:29:23 +00:00
tint: polyfill remainder to handle negative operands
Bug: tint:1802 Change-Id: Ie9baa045feda08523e5ca4f5ce94b6db7d4477e5 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/119100 Commit-Queue: Antonio Maiorano <amaiorano@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
committed by
Dawn LUCI CQ
parent
78583a14e6
commit
ec20758675
@@ -13,7 +13,12 @@ layout(binding = 0, std430) buffer v_block_ssbo {
|
||||
} v;
|
||||
|
||||
int tint_mod(int lhs, int rhs) {
|
||||
return (lhs % (bool(uint((rhs == 0)) | uint(bool(uint((lhs == -2147483648)) & uint((rhs == -1))))) ? 1 : rhs));
|
||||
int rhs_or_one = (bool(uint((rhs == 0)) | uint(bool(uint((lhs == -2147483648)) & uint((rhs == -1))))) ? 1 : rhs);
|
||||
if (((uint((lhs | rhs_or_one)) & 2147483648u) != 0u)) {
|
||||
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
|
||||
} else {
|
||||
return (lhs % rhs_or_one);
|
||||
}
|
||||
}
|
||||
|
||||
void foo() {
|
||||
|
||||
Reference in New Issue
Block a user