diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-23 00:40:23 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-23 00:40:23 +0100 |
| commit | 3a4cb9bfcf9e91f3bd994d74af2e56f59d17688f (patch) | |
| tree | a74970dc96fe04b7fa466103994d096965edf9fc /src/kernel/GfxKit | |
| parent | 552304659a130070e59369bb01d0b706f267aef3 (diff) | |
feat: New entry in TraceSrv specs--codebase improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/GfxKit')
| -rw-r--r-- | src/kernel/GfxKit/FB.h | 8 | ||||
| -rw-r--r-- | src/kernel/GfxKit/GPU.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/GfxKit/FB.h b/src/kernel/GfxKit/FB.h index 462608ae..f9b39421 100644 --- a/src/kernel/GfxKit/FB.h +++ b/src/kernel/GfxKit/FB.h @@ -1,4 +1,4 @@ -// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/nekernel-org/nekernel @@ -12,10 +12,10 @@ namespace Kernel { class FBDeviceInterface; struct FBDevicePacket; -using FBCoord2x2 = UInt32; -using FBDim2x2 = UInt32; +using FBCoord2x2 = UInt32; +using FBDim2x2 = UInt32; using FBColorProfile = UInt32; -using FBFlags = UInt32; +using FBFlags = UInt32; /// @brief Framebuffer device interface packet. /// @details This structure is used to send and receive data from the framebuffer device. diff --git a/src/kernel/GfxKit/GPU.h b/src/kernel/GfxKit/GPU.h index 78d71558..af99e8b2 100644 --- a/src/kernel/GfxKit/GPU.h +++ b/src/kernel/GfxKit/GPU.h @@ -17,7 +17,7 @@ class GPUDeviceInterface; class GPUDeviceInterface NE_DEVICE<VoidPtr> { public: GPUDeviceInterface(void (*out)(IDevice* self, GPUDeviceInterface* out), - void (*in)(IDevice* self, GPUDeviceInterface* in)); + void (*in)(IDevice* self, GPUDeviceInterface* in)); virtual ~GPUDeviceInterface() override; |
