mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-05 18:02:54 +00:00
Kernel/Graphics: Use DisplayConnector design with generic framebuffers
This commit is contained in:
parent
c27c414ed1
commit
f15b93c9a1
Notes:
sideshowbarker
2024-07-17 11:16:55 +09:00
Author: https://github.com/supercomputer7
Commit: f15b93c9a1
Pull-request: https://github.com/SerenityOS/serenity/pull/13845
13 changed files with 203 additions and 139 deletions
|
@ -23,28 +23,4 @@ UNMAP_AFTER_INIT ISAVGAAdapter::ISAVGAAdapter()
|
|||
GraphicsManagement::the().set_console(*m_framebuffer_console);
|
||||
}
|
||||
|
||||
void ISAVGAAdapter::enable_consoles()
|
||||
{
|
||||
VERIFY(m_framebuffer_console);
|
||||
m_framebuffer_console->enable();
|
||||
}
|
||||
void ISAVGAAdapter::disable_consoles()
|
||||
{
|
||||
VERIFY(m_framebuffer_console);
|
||||
m_framebuffer_console->disable();
|
||||
}
|
||||
|
||||
void ISAVGAAdapter::initialize_framebuffer_devices()
|
||||
{
|
||||
}
|
||||
|
||||
bool ISAVGAAdapter::try_to_set_resolution(size_t, size_t, size_t)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
bool ISAVGAAdapter::set_y_offset(size_t, size_t)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue