1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

Kernel: Move x86 Bochs VBE code to the Arch/x86 directory

To do this, we make the QEMUDisplayConnector class more standalone so it
does not need to inherit from the BochsDisplayConnector class.
This commit is contained in:
Liav A 2022-09-03 12:30:39 +03:00 committed by Linus Groh
parent c50a81e93e
commit 8d6da9863f
7 changed files with 86 additions and 13 deletions

View file

@ -19,7 +19,6 @@ namespace Kernel {
class GraphicsManagement;
struct BochsDisplayMMIORegisters;
class BochsDisplayConnector;
class BochsGraphicsAdapter final : public GenericGraphicsAdapter
, public PCI::Device {
friend class GraphicsManagement;
@ -33,6 +32,6 @@ private:
explicit BochsGraphicsAdapter(PCI::DeviceIdentifier const&);
LockRefPtr<BochsDisplayConnector> m_display_connector;
LockRefPtr<DisplayConnector> m_display_connector;
};
}