mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:17:45 +00:00
LibPDF: Implement marked renderer operations as nops
This commit is contained in:
parent
544e44eec1
commit
6f1cfcf217
1 changed files with 31 additions and 5 deletions
|
@ -534,11 +534,37 @@ RENDERER_TODO(inline_image_begin)
|
||||||
RENDERER_TODO(inline_image_begin_data)
|
RENDERER_TODO(inline_image_begin_data)
|
||||||
RENDERER_TODO(inline_image_end)
|
RENDERER_TODO(inline_image_end)
|
||||||
RENDERER_TODO(paint_xobject)
|
RENDERER_TODO(paint_xobject)
|
||||||
RENDERER_TODO(marked_content_point)
|
|
||||||
RENDERER_TODO(marked_content_designate)
|
RENDERER_HANDLER(marked_content_point)
|
||||||
RENDERER_TODO(marked_content_begin)
|
{
|
||||||
RENDERER_TODO(marked_content_begin_with_property_list)
|
// nop
|
||||||
RENDERER_TODO(marked_content_end)
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
RENDERER_HANDLER(marked_content_designate)
|
||||||
|
{
|
||||||
|
// nop
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
RENDERER_HANDLER(marked_content_begin)
|
||||||
|
{
|
||||||
|
// nop
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
RENDERER_HANDLER(marked_content_begin_with_property_list)
|
||||||
|
{
|
||||||
|
// nop
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
RENDERER_HANDLER(marked_content_end)
|
||||||
|
{
|
||||||
|
// nop
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
RENDERER_TODO(compatibility_begin)
|
RENDERER_TODO(compatibility_begin)
|
||||||
RENDERER_TODO(compatibility_end)
|
RENDERER_TODO(compatibility_end)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue