Cleanup unused libretro shader code

This commit is contained in:
TiKevin83 2020-05-24 16:14:41 -04:00 committed by adelikat
parent 21779a2a6f
commit cab89ef182
1 changed files with 0 additions and 3 deletions

View File

@ -60,9 +60,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
public static Triple LibretroGBCColor(Triple c)
{
Triple ret;
ret.r = (c.r * 13 + c.g * 2 + c.b) >> 1;
ret.g = (c.g * 3 + c.b) << 1;
ret.b = (c.r * 3 + c.g * 2 + c.b * 11) >> 1;
double gammaR = Math.Pow((double)c.r / 31, 2.2);
double gammaG = Math.Pow((double)c.g / 31, 2.2);
double gammaB = Math.Pow((double)c.b / 31, 2.2);