diff options
author | Tyler Murphy <=> | 2023-07-16 19:56:56 -0400 |
---|---|---|
committer | Tyler Murphy <=> | 2023-07-16 19:56:56 -0400 |
commit | 8ad6ef551e9a1c51a77f3662978c7559556897d6 (patch) | |
tree | ed07aeae3122a009385d7db8fc98a61b25c38c99 /kernel/src/graphics | |
parent | initial (diff) | |
download | finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.tar.gz finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.tar.bz2 finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.zip |
time
Diffstat (limited to 'kernel/src/graphics')
-rw-r--r-- | kernel/src/graphics/framebuffer.h | 15 |
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)); |