mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 15:43:36 +03:00
28723d8be1
This is going to allow us reuse glyph texture across painters and page repaints.
15 lines
301 B
CMake
15 lines
301 B
CMake
include(accelerated_graphics)
|
|
|
|
if (HAS_ACCELERATED_GRAPHICS)
|
|
set(SOURCES
|
|
GL.cpp
|
|
GlyphAtlas.cpp
|
|
Context.cpp
|
|
Painter.cpp
|
|
Program.cpp
|
|
)
|
|
|
|
serenity_lib(LibAccelGfx accelgfx)
|
|
target_link_libraries(LibAccelGfx PRIVATE LibGfx ${ACCEL_GFX_LIBS})
|
|
endif()
|