From 1cd930c0c72f215101300dfcc5860800a474362d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 26 Mar 2024 05:16:48 +0100 Subject: Kernel: Adding IPC support. Kernel: Adding better framebuffer support. Kernel: Expose part of CFKit' URL API. System.Core: Rename most of API types to their with Ref at the end. System.Core: Add API to Window.hxx System.Driver: Add Driver SDK. Signed-off-by: Amlal El Mahrouss --- Private/KernelKit/Framebuffer.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Private/KernelKit/Framebuffer.hpp') diff --git a/Private/KernelKit/Framebuffer.hpp b/Private/KernelKit/Framebuffer.hpp index 0dfeacef..397f62d0 100644 --- a/Private/KernelKit/Framebuffer.hpp +++ b/Private/KernelKit/Framebuffer.hpp @@ -67,18 +67,18 @@ class Framebuffer final { }; /***********************************************************************************/ -/// Framebuffer utils. +/// Color utils. /***********************************************************************************/ const UInt32 kRgbRed = 0x000000FF; const UInt32 kRgbGreen = 0x0000FF00; const UInt32 kRgbBlue = 0x00FF0000; const UInt32 kRgbBlack = 0x00000000; -const UInt32 kRgbWhite = 0x00FFFFFF; +const UInt32 kRgbWhite = 0xFFFFFFFF; } // namespace HCore /***********************************************************************************/ -/// Framebuffer macros. +/// Color macros. /***********************************************************************************/ #define RGB(R, G, B) (HCore::UInt32)(0x##R##G##B) -- cgit v1.2.3