mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:12:45 +00:00 
			
		
		
		
	 11c807ebd1
			
		
	
	
		11c807ebd1
		
	
	
	
	
		
			
			This implements an 8-bit front stencil buffer. Stencil operations are SIMD optimized. LibGL changes include: * New `glStencilMask` and `glStencilMaskSeparate` functions * New context parameter `GL_STENCIL_CLEAR_VALUE`
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     Clipper.cpp
 | |
|     DepthBuffer.cpp
 | |
|     Device.cpp
 | |
|     Image.cpp
 | |
|     Sampler.cpp
 | |
|     StencilBuffer.cpp
 | |
| )
 | |
| 
 | |
| add_compile_options(-Wno-psabi)
 | |
| serenity_lib(LibSoftGPU softgpu)
 | |
| target_link_libraries(LibSoftGPU LibM LibCore LibGfx)
 |