summaryrefslogtreecommitdiff
path: root/Kernel/Graphics/VMWare
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Graphics/VMWare')
-rw-r--r--Kernel/Graphics/VMWare/GraphicsAdapter.cpp5
-rw-r--r--Kernel/Graphics/VMWare/GraphicsAdapter.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/Kernel/Graphics/VMWare/GraphicsAdapter.cpp b/Kernel/Graphics/VMWare/GraphicsAdapter.cpp
index 29ad1c1adb..3ccf87a363 100644
--- a/Kernel/Graphics/VMWare/GraphicsAdapter.cpp
+++ b/Kernel/Graphics/VMWare/GraphicsAdapter.cpp
@@ -188,9 +188,4 @@ UNMAP_AFTER_INIT ErrorOr<void> VMWareGraphicsAdapter::initialize_adapter()
return {};
}
-bool VMWareGraphicsAdapter::vga_compatible() const
-{
- return false;
-}
-
}
diff --git a/Kernel/Graphics/VMWare/GraphicsAdapter.h b/Kernel/Graphics/VMWare/GraphicsAdapter.h
index bbe56483c6..212298d975 100644
--- a/Kernel/Graphics/VMWare/GraphicsAdapter.h
+++ b/Kernel/Graphics/VMWare/GraphicsAdapter.h
@@ -29,8 +29,6 @@ public:
static RefPtr<VMWareGraphicsAdapter> try_initialize(PCI::DeviceIdentifier const&);
virtual ~VMWareGraphicsAdapter() = default;
- virtual bool vga_compatible() const override;
-
ErrorOr<void> modeset_primary_screen_resolution(Badge<VMWareDisplayConnector>, size_t width, size_t height);
size_t primary_screen_width(Badge<VMWareDisplayConnector>) const;
size_t primary_screen_height(Badge<VMWareDisplayConnector>) const;
@@ -55,7 +53,6 @@ private:
const IOAddress m_io_registers_base;
mutable Spinlock m_io_access_lock;
mutable RecursiveSpinlock m_operation_lock;
- bool m_is_vga_capable { false };
};
}