1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:27:45 +00:00

LibWeb: Add painting command executor that uses LibAccelGfx

This change introduces a command executor for RecordingPainter that
utilizes LibAccelGfx.
This commit is contained in:
Aliaksandr Kalenik 2023-10-27 17:14:27 +02:00 committed by Andreas Kling
parent 95c154d9bd
commit 7d26cbf523
4 changed files with 300 additions and 0 deletions

View file

@ -626,6 +626,10 @@ set(SOURCES
XML/XMLDocumentBuilder.cpp
)
if (LINUX)
list(APPEND SOURCES Painting/PaintingCommandExecutorGPU.cpp)
endif()
invoke_generator(
"AriaRoles.cpp"
Lagom::GenerateAriaRoles
@ -659,6 +663,10 @@ serenity_lib(LibWeb web)
target_link_libraries(LibWeb PRIVATE LibCore LibCrypto LibJS LibMarkdown LibHTTP LibGemini LibGL LibGUI LibGfx LibIPC LibLocale LibRegex LibSoftGPU LibSyntax LibTextCodec LibUnicode LibAudio LibVideo LibWasm LibXML LibIDL)
link_with_locale_data(LibWeb)
if (LINUX)
target_link_libraries(LibWeb PRIVATE LibAccelGfx)
endif()
generate_js_bindings(LibWeb)
# Note: If you're looking for the calls to "libweb_js_bindings()",