mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:08:10 +00:00

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)
|