Guest User

Untitled

a guest
Aug 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. // 3-tap median filter
  2. half3 Median(half3 a, half3 b, half3 c)
  3. {
  4. return a + b + c - min(min(a, b), c) - max(max(a, b), c);
  5. }
Add Comment
Please, Sign In to add comment