summaryrefslogtreecommitdiff
path: root/kernel/src/graphics
diff options
context:
space:
mode:
authorTyler Murphy <=>2023-07-16 19:56:56 -0400
committerTyler Murphy <=>2023-07-16 19:56:56 -0400
commit8ad6ef551e9a1c51a77f3662978c7559556897d6 (patch)
treeed07aeae3122a009385d7db8fc98a61b25c38c99 /kernel/src/graphics
parentinitial (diff)
downloadfinix-8ad6ef551e9a1c51a77f3662978c7559556897d6.tar.gz
finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.tar.bz2
finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.zip
time
Diffstat (limited to 'kernel/src/graphics')
-rw-r--r--kernel/src/graphics/framebuffer.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/kernel/src/graphics/framebuffer.h b/kernel/src/graphics/framebuffer.h
deleted file mode 100644
index c3b0dc6..0000000
--- a/kernel/src/graphics/framebuffer.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-
-#include <stdint.h>
-
-struct Framebuffer {
- uint64_t addr;
- uint32_t pitch;
- uint32_t width;
- uint32_t height;
- uint8_t depth;
- uint8_t type;
- uint8_t reserved;
- // struct FramebufferPallete palettes[];
-
-} __attribute__ ((packed));