aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/graphics')
-rw-r--r--src/userspace/graphics/framebuffer.c42
-rw-r--r--src/userspace/graphics/graphics.h12
2 files changed, 27 insertions, 27 deletions
diff --git a/src/userspace/graphics/framebuffer.c b/src/userspace/graphics/framebuffer.c
index 6fc1937..9994075 100644
--- a/src/userspace/graphics/framebuffer.c
+++ b/src/userspace/graphics/framebuffer.c
@@ -9,38 +9,38 @@ int vbe_width = 2560;
void vesa_draw_rectangle(int x1, int y1, int x2, int y2, const uint32_t color[3])
{
- int pos1 = x1 * vbe_bpl + y1 * vbe_pitch;
- char *draw = (char *) &fb[pos1];
- for (int i = 0; i <= y2 - y1; i++) {
- for (int j = 0; j <= x2 - x1; j++) {
- draw[vbe_bpl * j] = color[2];
- draw[vbe_bpl * j + 1] = color[1];
- draw[vbe_bpl * j + 2] = color[0];
- }
- draw += vbe_pitch;
- }
+ int pos1 = x1 * vbe_bpl + y1 * vbe_pitch;
+ char *draw = (char *)&fb[pos1];
+ for (int i = 0; i <= y2 - y1; i++) {
+ for (int j = 0; j <= x2 - x1; j++) {
+ draw[vbe_bpl * j] = color[2];
+ draw[vbe_bpl * j + 1] = color[1];
+ draw[vbe_bpl * j + 2] = color[0];
+ }
+ draw += vbe_pitch;
+ }
}
void vesa_set_pixel(uint16_t x, uint16_t y, const uint32_t color[3])
{
- unsigned pos = x * vbe_bpl + y * vbe_pitch;
- char *draw = (char *) &fb[pos];
- draw[pos] = color[2];
- draw[pos + 1] = color[1];
- draw[pos + 2] = color[0];
+ unsigned pos = x * vbe_bpl + y * vbe_pitch;
+ char *draw = (char *)&fb[pos];
+ draw[pos] = color[2];
+ draw[pos + 1] = color[1];
+ draw[pos + 2] = color[0];
}
void vesa_clear()
{
- uint32_t color[3] = {0, 0, 0};
- vesa_draw_rectangle(0, 0, vbe_width - 1, vbe_height - 1, color);
+ uint32_t color[3] = { 0, 0, 0 };
+ vesa_draw_rectangle(0, 0, vbe_width - 1, vbe_height - 1, color);
}
void init_framebuffer()
{
- struct userspace_pointers *pointers = (struct userspace_pointers *) syscall_get_pointers();
- fb = (unsigned char *) 0xfd000000;
+ struct userspace_pointers *pointers = (struct userspace_pointers *)syscall_get_pointers();
+ fb = (unsigned char *)0xfd000000;
- uint32_t color[3] = {0xff, 0x00, 0x00};
- vesa_set_pixel(0, 0, color);
+ uint32_t color[3] = { 0xff, 0x00, 0x00 };
+ vesa_set_pixel(0, 0, color);
} \ No newline at end of file
diff --git a/src/userspace/graphics/graphics.h b/src/userspace/graphics/graphics.h
index a0dcaf5..0e3d5be 100644
--- a/src/userspace/graphics/graphics.h
+++ b/src/userspace/graphics/graphics.h
@@ -4,15 +4,15 @@
#include <stdint.h>
struct font {
- uint16_t font_32[758][32];
- uint16_t font_24[758][24];
- uint8_t font_16[758][16];
- uint16_t cursor[19];
+ uint16_t font_32[758][32];
+ uint16_t font_24[758][24];
+ uint8_t font_16[758][16];
+ uint16_t cursor[19];
};
struct userspace_pointers {
- unsigned char *fb;
- struct font *font;
+ unsigned char *fb;
+ struct font *font;
};
void init_framebuffer();