1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +00:00

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.
This commit is contained in:
Stephan Unverwerth 2021-12-18 23:48:07 +01:00 committed by Brian Gianforcaro
parent a9e27b9a0f
commit 91ccf9958f
4 changed files with 235 additions and 0 deletions

View file

@ -2,6 +2,7 @@ set(SOURCES
Clipper.cpp
DepthBuffer.cpp
Device.cpp
Image.cpp
)
serenity_lib(LibSoftGPU softgpu)