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

LibGfx/ICC: Move some Profile member vars up a bit

...so that they're not below a FIXME that doesn't apply to them.

No behavior change.
This commit is contained in:
Nico Weber 2024-01-08 18:17:51 -05:00 committed by Sam Atkins
parent 7d796c83f1
commit 5c5a24c6b7

View file

@ -241,12 +241,12 @@ private:
ErrorOr<void> check_required_tags();
ErrorOr<void> check_tag_types();
ProfileHeader m_header;
OrderedHashMap<TagSignature, NonnullRefPtr<TagData>> m_tag_table;
// FIXME: The color conversion stuff should be in some other class.
ErrorOr<FloatVector3> to_pcs_a_to_b(TagData const& tag_data, ReadonlyBytes) const;
ErrorOr<void> from_pcs_b_to_a(TagData const& tag_data, FloatVector3 const&, Bytes) const;
ProfileHeader m_header;
OrderedHashMap<TagSignature, NonnullRefPtr<TagData>> m_tag_table;
};
}