diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-21 17:47:16 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-21 17:47:16 +0200 |
| commit | 4f8fb9c70f814de796d61d7d85d4bf133afddafa (patch) | |
| tree | e411bb18332d2e3a37e37a12b51017e366cad31d /dev/kernel/GfxKit | |
| parent | 58f969493aaa834f472402a2bebe1cd37094a6d2 (diff) | |
dev, kernel: Made HeFS use a RB-Tree traversal algorithm.
- ran format command.
- a variation of a red-black tree traversal, with customized
fallback mechanism.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/GfxKit')
| -rw-r--r-- | dev/kernel/GfxKit/FB.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/dev/kernel/GfxKit/FB.h b/dev/kernel/GfxKit/FB.h index ce5751dc..b01743ff 100644 --- a/dev/kernel/GfxKit/FB.h +++ b/dev/kernel/GfxKit/FB.h @@ -14,22 +14,22 @@ namespace Kernel class FBDeviceInterface; struct FBDevicePacket; - /// @brief Framebuffer device interface packet. - /// @details This structure is used to send and receive data from the framebuffer device. - /// @note The structure is packed to ensure that the data is aligned correctly for the device. + /// @brief Framebuffer device interface packet. + /// @details This structure is used to send and receive data from the framebuffer device. + /// @note The structure is packed to ensure that the data is aligned correctly for the device. struct PACKED FBDevicePacket final { - UInt32 fX; - UInt32 fY; - UInt32 fWidth; - UInt32 fHeight; - UInt32 fColor; - UInt32 fFlags; + UInt32 fX; + UInt32 fY; + UInt32 fWidth; + UInt32 fHeight; + UInt32 fColor; + UInt32 fFlags; }; - /// @brief Framebuffer device interface. - /// @details This class is used to send and receive data from the framebuffer device. - /// @note The class is derived from the IDeviceObject class. + /// @brief Framebuffer device interface. + /// @details This class is used to send and receive data from the framebuffer device. + /// @note The class is derived from the IDeviceObject class. class FBDeviceInterface NE_DEVICE<FBDevicePacket*> { public: |
