mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 02:47:34 +00:00
LibGL+LibGPU+LibSoftGPU: Load SoftGPU driver dynamically
This loads libsoftgpu.so during GLContext creation and instantiates the device class which is then passed into the GLContext constructor.
This commit is contained in:
parent
211d24a218
commit
5bb76e9b63
11 changed files with 165 additions and 9 deletions
8
Userland/Libraries/LibGPU/CMakeLists.txt
Normal file
8
Userland/Libraries/LibGPU/CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
set(SOURCES
|
||||
Driver.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibGPU gpu)
|
||||
target_link_libraries(LibGPU LibCore LibDl)
|
||||
|
||||
add_dependencies(LibGPU LibSoftGPU)
|
Loading…
Add table
Add a link
Reference in a new issue