mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	 fd5eaf6494
			
		
	
	
		fd5eaf6494
		
	
	
	
	
		
			
			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).
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| 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)
 |