plug-ins, TIFF: Oops, forgot to save formatting fixes before committing.

This commit is contained in:
Jacob Boerema
2021-03-04 15:23:29 -05:00
parent dee605ce27
commit 441631322b

View File

@ -736,18 +736,18 @@ load_image (GFile *file,
if (profile_linear)
{
base_format = babl_format_new (babl_model ("YA"),
type,
babl_component ("Y"),
babl_component ("A"),
NULL);
type,
babl_component ("Y"),
babl_component ("A"),
NULL);
}
else
{
base_format = babl_format_new (babl_model ("Y'A"),
type,
babl_component ("Y'"),
babl_component ("A"),
NULL);
type,
babl_component ("Y'"),
babl_component ("A"),
NULL);
}
}
else
@ -755,18 +755,18 @@ load_image (GFile *file,
if (profile_linear)
{
base_format = babl_format_new (babl_model ("YaA"),
type,
babl_component ("Ya"),
babl_component ("A"),
NULL);
type,
babl_component ("Ya"),
babl_component ("A"),
NULL);
}
else
{
base_format = babl_format_new (babl_model ("Y'aA"),
type,
babl_component ("Y'a"),
babl_component ("A"),
NULL);
type,
babl_component ("Y'a"),
babl_component ("A"),
NULL);
}
}
}
@ -775,16 +775,16 @@ load_image (GFile *file,
if (profile_linear)
{
base_format = babl_format_new (babl_model ("Y"),
type,
babl_component ("Y"),
NULL);
type,
babl_component ("Y"),
NULL);
}
else
{
base_format = babl_format_new (babl_model ("Y'"),
type,
babl_component ("Y'"),
NULL);
type,
babl_component ("Y'"),
NULL);
}
}
break;