Created
January 21, 2019 06:32
-
-
Save fuqunaga/c0a21b748b0e8489f27720fa4d9d8c0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef TONE_INCLUDED | |
#define TONE_INCLUDED | |
half4 _Tone; | |
half3 CalcTone(half3 c) | |
{ | |
return lerp(c, _Tone.x*pow(c, _Tone.y) + _Tone.z, _Tone.w); | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment