mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 01:26:22 +00:00
LibPDF/CFF: Add enum values for CID-keyed font top dict entries
No behavior change.
This commit is contained in:
parent
6df0150671
commit
6ebddab448
Notes:
sideshowbarker
2024-07-18 04:38:32 +09:00
Author: https://github.com/nico
Commit: 6ebddab448
Pull-request: https://github.com/SerenityOS/serenity/pull/23136
2 changed files with 21 additions and 0 deletions
|
@ -229,6 +229,16 @@ PDFErrorOr<NonnullRefPtr<CFF>> CFF::create(ReadonlyBytes const& cff_bytes, RefPt
|
|||
}));
|
||||
break;
|
||||
}
|
||||
case TopDictOperator::CIDFontVersion:
|
||||
case TopDictOperator::CIDFontRevision:
|
||||
case TopDictOperator::CIDFontType:
|
||||
case TopDictOperator::CIDCount:
|
||||
case TopDictOperator::UIDBase:
|
||||
case TopDictOperator::FDArray:
|
||||
case TopDictOperator::FDSelect:
|
||||
case TopDictOperator::FontName:
|
||||
// Keys for CID-keyed fonts that we don't need, at least at the moment.
|
||||
break;
|
||||
default:
|
||||
dbgln("CFF: Unhandled top dict entry {}", static_cast<int>(op));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue