summaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/109_vectors.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/patches/patches/109_vectors.patch b/patches/patches/109_vectors.patch
index ec2189e..4b11da9 100644
--- a/patches/patches/109_vectors.patch
+++ b/patches/patches/109_vectors.patch
@@ -6,7 +6,7 @@
fn calcMaxPairwiseDiffNew( a : Vec4, b : Vec4) f32 {
- const abs_diff_vec = ???;
- const max_diff = @reduce(???, abs_diff_vec);
-+ const abs_diff_vec = @abs(a - b);
++ const abs_diff_vec = @abs( a - b );
+ const max_diff = @reduce(.Max, abs_diff_vec);
return max_diff;
}