LibGfx: Do not repeat class name in ICC from_bytes() functions
Makes these more amenable to copy-pasting :^) No behavior change.
This commit is contained in:
parent
6cfb057430
commit
b347aebc3e
Notes:
sideshowbarker
2024-07-17 01:21:14 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/b347aebc3e Pull-request: https://github.com/SerenityOS/serenity/pull/17147
1 changed files with 4 additions and 4 deletions
|
@ -553,7 +553,7 @@ static ErrorOr<void> check_reserved(ReadonlyBytes tag_bytes)
|
|||
ErrorOr<NonnullRefPtr<MultiLocalizedUnicodeTagData>> MultiLocalizedUnicodeTagData::from_bytes(ReadonlyBytes bytes, u32 offset, u32 size)
|
||||
{
|
||||
// ICC v4, 10.15 multiLocalizedUnicodeType
|
||||
VERIFY(tag_type(bytes) == MultiLocalizedUnicodeTagData::Type);
|
||||
VERIFY(tag_type(bytes) == Type);
|
||||
TRY(check_reserved(bytes));
|
||||
|
||||
// "Multiple strings within this tag may share storage locations. For example, en/US and en/UK can refer to the
|
||||
|
@ -627,7 +627,7 @@ ErrorOr<NonnullRefPtr<TextDescriptionTagData>> TextDescriptionTagData::from_byte
|
|||
// systems. The 7-bit ASCII description is to be an invariant, nonlocalizable name for consistent reference.
|
||||
// It is preferred that both the Unicode and ScriptCode structures be properly localized."
|
||||
|
||||
VERIFY(tag_type(bytes) == TextDescriptionTagData::Type);
|
||||
VERIFY(tag_type(bytes) == Type);
|
||||
TRY(check_reserved(bytes));
|
||||
|
||||
// 7-bit ASCII
|
||||
|
@ -759,7 +759,7 @@ ErrorOr<NonnullRefPtr<TextDescriptionTagData>> TextDescriptionTagData::from_byte
|
|||
ErrorOr<NonnullRefPtr<TextTagData>> TextTagData::from_bytes(ReadonlyBytes bytes, u32 offset, u32 size)
|
||||
{
|
||||
// ICC v4, 10.24 textType
|
||||
VERIFY(tag_type(bytes) == TextTagData::Type);
|
||||
VERIFY(tag_type(bytes) == Type);
|
||||
TRY(check_reserved(bytes));
|
||||
|
||||
// "The textType is a simple text structure that contains a 7-bit ASCII text string. The length of the string is obtained
|
||||
|
@ -784,7 +784,7 @@ ErrorOr<NonnullRefPtr<TextTagData>> TextTagData::from_bytes(ReadonlyBytes bytes,
|
|||
ErrorOr<NonnullRefPtr<XYZTagData>> XYZTagData::from_bytes(ReadonlyBytes bytes, u32 offset, u32 size)
|
||||
{
|
||||
// ICC v4, 10.31 XYZType
|
||||
VERIFY(tag_type(bytes) == XYZTagData::Type);
|
||||
VERIFY(tag_type(bytes) == Type);
|
||||
TRY(check_reserved(bytes));
|
||||
|
||||
// "The XYZType contains an array of three encoded values for PCSXYZ, CIEXYZ, or nCIEXYZ values. The
|
||||
|
|
Loading…
Add table
Reference in a new issue