Skip to content

Instantly share code, notes, and snippets.

@fuqunaga
Created January 21, 2019 06:32
Show Gist options
  • Save fuqunaga/c0a21b748b0e8489f27720fa4d9d8c0f to your computer and use it in GitHub Desktop.
Save fuqunaga/c0a21b748b0e8489f27720fa4d9d8c0f to your computer and use it in GitHub Desktop.
#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