mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 00:47: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:
parent
95c154d9bd
commit
7d26cbf523
4 changed files with 300 additions and 0 deletions
|
@ -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()",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue