diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-06 14:52:33 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-06 14:52:33 +0200 |
| commit | 32f75625830660468287de0f213baee760fc6384 (patch) | |
| tree | aaa8286ee13a4188d826d4efd59482c7b1aa0e73 /Private/KernelKit/Framebuffer.hpp | |
| parent | 422b8029eba71b6fbb6b3dcb386b8e115bbd08ef (diff) | |
:boom: Breaking changes, disk API improvemenets and bringing support for
more drivers...
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/KernelKit/Framebuffer.hpp')
| -rw-r--r-- | Private/KernelKit/Framebuffer.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Private/KernelKit/Framebuffer.hpp b/Private/KernelKit/Framebuffer.hpp index 91b4e8fd..39b1eb5e 100644 --- a/Private/KernelKit/Framebuffer.hpp +++ b/Private/KernelKit/Framebuffer.hpp @@ -20,16 +20,16 @@ enum class FramebufferColorKind : UChar { class FramebufferContext final { public: - UIntPtr m_Base; - UIntPtr m_Bpp; - UInt m_Width; - UInt m_Height; + UIntPtr fBase; + UIntPtr fBpp; + UInt fWidth; + UInt fHeight; }; class Framebuffer final { public: explicit Framebuffer(Ref<FramebufferContext *> &addr) - : m_FrameBufferAddr(addr) {} + : fFrameBufferAddr(addr) {} ~Framebuffer() {} Framebuffer &operator=(const Framebuffer &) = delete; @@ -62,8 +62,8 @@ class Framebuffer final { Framebuffer &PutPixel(SizeT x, SizeT y, UInt32 color); private: - Ref<FramebufferContext *> m_FrameBufferAddr; - FramebufferColorKind m_Colour; + Ref<FramebufferContext *> fFrameBufferAddr; + FramebufferColorKind fColour; }; /***********************************************************************************/ |
