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

Kernel/Graphics: Remove GenericGraphicsAdapter::vga_compatible method

There's no point in keeping this method as we don't really care if a
graphics adapter is VGA compatible or not because we don't use this
method anymore.
This commit is contained in:
Liav A 2022-07-15 04:58:51 +03:00 committed by Andreas Kling
parent e5de5f4cf3
commit ebbc38cd2a
7 changed files with 0 additions and 25 deletions

View file

@ -39,9 +39,6 @@ class VirtIOGraphicsAdapter final
public:
static NonnullRefPtr<VirtIOGraphicsAdapter> initialize(PCI::DeviceIdentifier const&);
// FIXME: There's a VirtIO VGA GPU variant, so we should consider that
virtual bool vga_compatible() const override { return false; }
virtual void initialize() override;
void initialize_3d_device();