1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:37:44 +00:00

Demos: Create demo for VirGL gpu device

This is a simple demo for VirGL, that does the bare minimum required to
create and render a spinning cube (with one color per face).
This commit is contained in:
Sahan Fernando 2022-02-18 13:27:19 +11:00 committed by Ali Mohammad Pur
parent 2939f65753
commit fd5eaf6494
8 changed files with 957 additions and 0 deletions

View file

@ -0,0 +1,13 @@
serenity_component(
VirGLDemo
TARGETS VirGLDemo
)
set(SOURCES
CommandBufferBuilder.cpp
VirGLDemo.cpp
Widget.cpp
)
serenity_app(VirGLDemo ICON app-cube)
target_link_libraries(VirGLDemo LibMain LibGUI)