From 32f75625830660468287de0f213baee760fc6384 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 6 Apr 2024 14:52:33 +0200 Subject: :boom: Breaking changes, disk API improvemenets and bringing support for more drivers... Signed-off-by: Amlal El Mahrouss --- Private/KernelKit/Framebuffer.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Private/KernelKit/Framebuffer.hpp') 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 &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 m_FrameBufferAddr; - FramebufferColorKind m_Colour; + Ref fFrameBufferAddr; + FramebufferColorKind fColour; }; /***********************************************************************************/ -- cgit v1.2.3