1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

LibPDF: Rename ColorSpaceFamily function to may_be_specified_directly()

It used to be called ColorSpaceFamily::never_needs_parameters().

But in the cpp file, the macro arg was called ever_needs_parameters,
and the spec says

"If the color space is one that can be specified by a name and no
additional parameters (DeviceGray, DeviceRGB, DeviceCMYK, and certain
cases of Pattern), the name may be specified directly."

so let's use that language here.

No behavior change.
This commit is contained in:
Nico Weber 2023-10-20 11:11:03 -04:00 committed by Andrew Kaster
parent 095a2a17ed
commit aea0e2f313
3 changed files with 11 additions and 11 deletions

View file

@ -958,7 +958,7 @@ PDFErrorOr<NonnullRefPtr<ColorSpace>> Renderer::get_color_space_from_resources(V
auto maybe_color_space_family = ColorSpaceFamily::get(color_space_name);
if (!maybe_color_space_family.is_error()) {
auto color_space_family = maybe_color_space_family.release_value();
if (color_space_family.never_needs_parameters()) {
if (color_space_family.may_be_specified_directly()) {
return ColorSpace::create(color_space_name);
}
}