summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/KernelKit/Framebuffer.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-18 21:39:29 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-18 21:39:29 +0200
commitda70596895d8135e08f8caac6978117697b4c021 (patch)
tree2516785b5434df8453687f05dc8dd877438901ab /dev/Kernel/KernelKit/Framebuffer.hxx
parent005de79004c9d30e64bdee6e14e06f9d47d1f2ab (diff)
[REFACTOR]
Improved project structure. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/KernelKit/Framebuffer.hxx')
-rw-r--r--dev/Kernel/KernelKit/Framebuffer.hxx85
1 files changed, 0 insertions, 85 deletions
diff --git a/dev/Kernel/KernelKit/Framebuffer.hxx b/dev/Kernel/KernelKit/Framebuffer.hxx
deleted file mode 100644
index dac9b514..00000000
--- a/dev/Kernel/KernelKit/Framebuffer.hxx
+++ /dev/null
@@ -1,85 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
- File: Framebuffer.hpp
- Purpose: Framebuffer object.
-
-------------------------------------------- */
-
-#ifndef __INC_FB_HPP__
-#define __INC_FB_HPP__
-
-#include <NewKit/Defines.hxx>
-#include <NewKit/Ref.hxx>
-
-namespace Kernel
-{
- enum class FramebufferColorKind : UChar
- {
- RGB32,
- RGB16,
- RGB8,
- INVALID,
- };
-
- class FramebufferContext final
- {
- public:
- UIntPtr fBase;
- UIntPtr fBpp;
- UInt fWidth;
- UInt fHeight;
- };
-
- class Framebuffer final
- {
- public:
- explicit Framebuffer(Ref<FramebufferContext*>& addr);
- ~Framebuffer() = default;
-
- Framebuffer& operator=(const Framebuffer&) = delete;
- Framebuffer(const Framebuffer&) = default;
-
- volatile UIntPtr* operator[](const UIntPtr& pos);
-
- operator bool();
-
- const FramebufferColorKind& Color(
- const FramebufferColorKind& colour = FramebufferColorKind::INVALID);
-
- Ref<FramebufferContext*>& Leak();
-
- /// @brief Draws a rectangle inside the fb.
- /// @param width the width of it
- /// @param height the height of it
- /// @param x its x coord.
- /// @param y its y coord.
- /// @param color the color of it.
- /// @return the framebuffer object.
- Framebuffer& DrawRect(SizeT width, SizeT height, SizeT x, SizeT y, UInt32 color);
-
- /// @brief Puts a pixel on the screen.
- /// @param x where in X
- /// @param y where in Y
- /// @param color the color of it.
- /// @return the framebuffer object.
- Framebuffer& PutPixel(SizeT x, SizeT y, UInt32 color);
-
- private:
- Ref<FramebufferContext*> fFrameBufferAddr;
- FramebufferColorKind fColour;
- };
-
- /***********************************************************************************/
- /// Some common colors.
- /***********************************************************************************/
-
- extern const UInt32 kRgbRed;
- extern const UInt32 kRgbGreen;
- extern const UInt32 kRgbBlue;
- extern const UInt32 kRgbBlack;
- extern const UInt32 kRgbWhite;
-} // namespace Kernel
-
-#endif /* ifndef __INC_FB_HPP__ */