mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 01:43:24 +00:00
libgimpcolor: Fix CAIRO_FORMAT_RGB96F babl format
As noted by Idriss, this should most likely be R'G'B' instead.
This commit is contained in:
parent
b0cec7c771
commit
d4af93b256
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ gimp_cairo_surface_get_format (cairo_surface_t *surface)
|
||||||
case CAIRO_FORMAT_A8: return babl_format ("cairo-A8");
|
case CAIRO_FORMAT_A8: return babl_format ("cairo-A8");
|
||||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 17, 2)
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 17, 2)
|
||||||
/* Since Cairo 1.17.2 */
|
/* Since Cairo 1.17.2 */
|
||||||
case CAIRO_FORMAT_RGB96F: return babl_format ("R'B'B' float");
|
case CAIRO_FORMAT_RGB96F: return babl_format ("R'G'B' float");
|
||||||
case CAIRO_FORMAT_RGBA128F: return babl_format ("R'G'B'A float");
|
case CAIRO_FORMAT_RGBA128F: return babl_format ("R'G'B'A float");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue