Advertisement
Guest User

Shadery02_Contrast

a guest
Feb 27th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. half3 Contrast(half3 c, half contrast)
  2. {
  3. c = (c - 0.5) * contrast + c;
  4. return saturate(c);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement