Files
ladybird/Kernel/Devices/GPU/GPUDevice.h
Liav A. 69a3602237 Kernel/GPU: Rename GenericGraphicsAdapter => GPUDevice
GenericGraphicsAdapter is mouthful. Also, the idea is to move towards a
more advanced subsystem that handles GPUs, not merely graphics adapters.
2024-05-14 15:42:29 -06:00

27 lines
512 B
C++

/*
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <Kernel/Bus/PCI/Definitions.h>
#include <Kernel/Devices/BlockDevice.h>
#include <Kernel/Library/LockWeakable.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {
class GPUDevice
: public AtomicRefCounted<GPUDevice>
, public LockWeakable<GPUDevice> {
public:
virtual ~GPUDevice() = default;
protected:
GPUDevice() = default;
};
}