Files
ui-library-playground/Core/Inc/graphics/graphics.h
Dylan Smith 6cdbe8cb11 WIP
2026-01-12 16:26:40 -05:00

10 lines
231 B
C

#ifndef GRAPHICS_H
#define GRAPHICS_H
#include "display.h"
#include "stdint.h"
void DisplayTest(pixel_t color);
void DrawBox(uint32_t topleft_x_loc, uint32_t topleft_y_loc, uint32_t width, uint32_t height, pixel_t color);
#endif