mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
11eee67b85
Until now, our kernel has reimplemented a number of AK classes to provide automatic internal locking: - RefPtr - NonnullRefPtr - WeakPtr - Weakable This patch renames the Kernel classes so that they can coexist with the original AK classes: - RefPtr => LockRefPtr - NonnullRefPtr => NonnullLockRefPtr - WeakPtr => LockWeakPtr - Weakable => LockWeakable The goal here is to eventually get rid of the Lock* classes in favor of using external locking.
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/Graphics/Console/GenericFramebufferConsole.h>
|
|
#include <Kernel/Graphics/VMWare/DisplayConnector.h>
|
|
#include <Kernel/TimerQueue.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class VMWareFramebufferConsole final : public Graphics::GenericFramebufferConsole {
|
|
public:
|
|
static NonnullLockRefPtr<VMWareFramebufferConsole> initialize(VMWareDisplayConnector& parent_display_connector);
|
|
|
|
virtual void set_resolution(size_t width, size_t height, size_t pitch) override;
|
|
virtual void flush(size_t x, size_t y, size_t width, size_t height) override;
|
|
virtual void enable() override;
|
|
|
|
private:
|
|
void enqueue_refresh_timer();
|
|
virtual u8* framebuffer_data() override;
|
|
|
|
VMWareFramebufferConsole(VMWareDisplayConnector const& parent_display_connector, DisplayConnector::ModeSetting current_resolution);
|
|
LockRefPtr<VMWareDisplayConnector> m_parent_display_connector;
|
|
bool m_dirty { false };
|
|
};
|
|
|
|
}
|