diff options
| author | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-11-25 22:49:04 +0100 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-11-25 22:49:04 +0100 |
| commit | 3ec35b5abeb9765c419cf896338de7d95143bc9b (patch) | |
| tree | 39dcf783049a768bb0e401ebe79d8dd400e38b69 /kernel/include | |
| parent | 99ff317e5e314b42b7f1cb4400b9afaaeda9c5b1 (diff) | |
removing pointer arithmetic
Diffstat (limited to 'kernel/include')
| -rw-r--r-- | kernel/include/graphics.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/include/graphics.h b/kernel/include/graphics.h index 4e4fc48..16805a6 100644 --- a/kernel/include/graphics.h +++ b/kernel/include/graphics.h @@ -23,7 +23,6 @@ extern volatile fb_t main_fb; #define WHITE 0x00ffffff #define BLACK 0x00000000 -uint32_t* pixel_offset(volatile fb_t fb, uint32_t x, uint32_t y); void fb_draw_pixel(volatile fb_t fb, int32_t x, int32_t y, uint32_t col); void fb_draw_line_low(volatile fb_t fb, int32_t x0, int32_t y0, int32_t x1, int32_t y1, uint32_t col); void fb_draw_line_high(volatile fb_t fb, int32_t x0, int32_t y0, int32_t x1, int32_t y1, uint32_t col); |
