| 107 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Color color_hsv (float hue, float saturation, float value, float transparency); |
| 108 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Vec3 color_to_hsv(in Color color); |
| 109 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Color color_lab (float l, float a, float b, float transparency); |
| 110 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Vec3 color_to_lab(in Color color); |
| 111 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Color color_to_linear(Color srgb_gamma_correct); |
| 112 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Color color_to_gamma (Color srgb_linear); |