1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

LibSoftGPU: Rename class SoftwareRasterizer to Device

This class does everything related to rendering now. It is the software
implementation of a full GPU device.
This commit is contained in:
Stephan Unverwerth 2021-12-18 14:07:47 +01:00 committed by Brian Gianforcaro
parent 178b28b469
commit a9e27b9a0f
5 changed files with 19 additions and 19 deletions

View file

@ -16,7 +16,7 @@
#include <LibGfx/Bitmap.h>
#include <LibGfx/Painter.h>
#include <LibGfx/Vector4.h>
#include <LibSoftGPU/SoftwareRasterizer.h>
#include <LibSoftGPU/Device.h>
using AK::dbgln;