Add GetPixel and DrawRectangle functions to Display class

This commit is contained in:
EnderIce2
2024-02-29 02:18:08 +02:00
parent 9925a9e9b4
commit 574c753b77
2 changed files with 37 additions and 0 deletions

View File

@ -214,6 +214,10 @@ namespace Video
void ClearBuffer();
void SetPixel(uint32_t X, uint32_t Y, uint32_t Color);
uint32_t GetPixel(uint32_t X, uint32_t Y);
void DrawRectangle(uint32_t X, uint32_t Y,
uint32_t Width, uint32_t Height,
uint32_t Color);
void Scroll(int Lines);
void SetDoNotScroll(bool Value)