1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

LibGPU+LibSoftGPU: Move size and pixel format information to GPU::Image

Size and format information are the same for every implementation and do
not need to be virtual. This removes the need to reimplement them for
each driver.
This commit is contained in:
Stephan Unverwerth 2022-12-19 14:25:17 +01:00 committed by Andreas Kling
parent dc8be499e6
commit 3b2ded1d44
6 changed files with 51 additions and 37 deletions

View file

@ -1,5 +1,6 @@
set(SOURCES
Driver.cpp
Image.cpp
)
serenity_lib(LibGPU gpu)