1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:07:45 +00:00
serenity/Userland/Libraries/LibSoftGPU/CMakeLists.txt
Stephan Unverwerth 91ccf9958f LibSoftGPU: Add Image class
This serves as the storage for all image types. 1D, 2D, 3D, Cube and
image arrays.

Upon construction a full mipmap chain is generated and the image is
immutable afterwards with respect to its layout.
2021-12-24 05:10:28 -08:00

9 lines
167 B
CMake

set(SOURCES
Clipper.cpp
DepthBuffer.cpp
Device.cpp
Image.cpp
)
serenity_lib(LibSoftGPU softgpu)
target_link_libraries(LibSoftGPU LibM LibCore LibGfx)