serenity/Kernel/Graphics
Sahan Fernando 34e9fa4d3b Kernel: Abstract FramebufferConsole away from contiguous physical range
Currently, Kernel::Graphics::FramebufferConsole is written assuming that
the underlying framebuffer memory exists in physically contiguous
memory. There are a bunch of framebuffer devices that would need to use
the components of FramebufferConsole (in particular access to the kernel
bitmap font rendering logic). To reduce code duplication, framebuffer
console has been split into two parts, the abstract
GenericFramebufferConsole class which does the rendering, and the
ContiguousFramebufferConsole class which contains all logic related to
managing the underling vm object.

Also, a new flush method has been added to the class, to support devices
that require an extra flush step to render.
2021-06-25 19:26:30 +02:00
..
Console Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
Bochs.h Kernel/Graphics: Remove unnecessary derived FramebufferDevice classes 2021-05-27 22:39:13 +02:00
BochsGraphicsAdapter.cpp Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
BochsGraphicsAdapter.h Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
Definitions.h
FramebufferDevice.cpp Kernel: Move special sections into Sections.h 2021-06-24 00:38:23 +02:00
FramebufferDevice.h Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
GraphicsDevice.h Kernel: Allow VGA-capable graphics adapters to exist with legacy VGA 2021-06-20 12:07:06 +02:00
GraphicsManagement.cpp Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
GraphicsManagement.h Kernel: Allow VGA-capable graphics adapters to exist with legacy VGA 2021-06-20 12:07:06 +02:00
IntelNativeGraphicsAdapter.cpp Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
IntelNativeGraphicsAdapter.h Kernel/Graphics: Remove unnecessary derived FramebufferDevice classes 2021-05-27 22:39:13 +02:00
VGACompatibleAdapter.cpp Kernel: Abstract FramebufferConsole away from contiguous physical range 2021-06-25 19:26:30 +02:00
VGACompatibleAdapter.h Kernel/Graphics: Remove unnecessary derived FramebufferDevice classes 2021-05-27 22:39:13 +02:00