1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

LibVirtGPU: Add a new GPU device that talks to our VirtIO-GPU driver

At this moment this only contains function stubs.
This commit is contained in:
Stephan Unverwerth 2022-12-19 15:24:07 +01:00 committed by Andreas Kling
parent 3b2ded1d44
commit c52abe0bea
9 changed files with 335 additions and 0 deletions

View file

@ -0,0 +1,9 @@
set(SOURCES
Device.cpp
Image.cpp
Shader.cpp
)
serenity_lib(LibVirtGPU virtgpu)
target_link_libraries(LibVirtGPU PRIVATE LibCore)
target_sources(LibVirtGPU PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../LibGPU/Image.cpp")