feature: start to implement the drivers for char printing support
This commit is contained in:
@ -5,5 +5,5 @@
|
||||
struct font {
|
||||
uint32_t height;
|
||||
uint32_t width;
|
||||
char **bitmap;
|
||||
};
|
||||
char *bitmap;
|
||||
};
|
||||
|
1647
headers/fonts/eating_pasta_regular_32.h
Normal file
1647
headers/fonts/eating_pasta_regular_32.h
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "icon.h"
|
||||
#include <stdint.h>
|
||||
|
||||
struct vbe_interface {
|
||||
@ -11,3 +12,6 @@ struct vbe_interface {
|
||||
};
|
||||
|
||||
extern struct vbe_interface display;
|
||||
|
||||
void draw_icon(uint32_t pos_x, uint32_t pos_y, struct icon *img);
|
||||
void put_pixel(uint32_t color, uint32_t x, uint32_t y);
|
||||
|
Reference in New Issue
Block a user