static void
models (void)
{
+
babl_model_new (
- "name", "HSVA",
+ "name", "HSV",
babl_component ("hue"),
babl_component ("saturation"),
babl_component ("value"),
- babl_component ("alpha"),
- "alpha",
- "doc", "A legacy color model that exists for compatibility with old GIMP code, V is MAX(R,G,B), with separate alpha.",
+ "doc", "A legacy color model that exists for compatibility with old GIMP code, V is MAX(R,G,B).",
NULL
);
-
babl_model_new (
- "name", "HSV",
+ "name", "HSVA",
babl_component ("hue"),
babl_component ("saturation"),
babl_component ("value"),
- "doc", "A legacy color model that exists for compatibility with old GIMP code, V is MAX(R,G,B).",
+ babl_component ("alpha"),
+ "alpha",
+ "doc", "HSV with separate alpha.",
NULL
);
}