mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
ebbc38cd2a
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.
26 lines
544 B
C++
26 lines
544 B
C++
/*
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <AK/Weakable.h>
|
|
#include <Kernel/Bus/PCI/Definitions.h>
|
|
#include <Kernel/Devices/BlockDevice.h>
|
|
#include <Kernel/PhysicalAddress.h>
|
|
|
|
namespace Kernel {
|
|
class GenericGraphicsAdapter
|
|
: public RefCounted<GenericGraphicsAdapter>
|
|
, public Weakable<GenericGraphicsAdapter> {
|
|
public:
|
|
virtual ~GenericGraphicsAdapter() = default;
|
|
|
|
protected:
|
|
GenericGraphicsAdapter() = default;
|
|
};
|
|
|
|
}
|