Color copyLinearToSRGB(Color color) { r = LinearToSRGB(color.r); g = LinearToSRGB(color.g); b = LinearToSRGB(color.b); return this; }