1
0

Hello TOR 2k24

Have fun 🚀
This commit is contained in:
2024-04-10 19:17:57 +02:00
commit f821a46ea0
62 changed files with 21518 additions and 0 deletions

25
rendering_functions.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef _RENDERING_FUNCTIONS_H
#define _RENDERING_FUNCTIONS_H
#include "gfx.h"
#include "resources_manager.h"
// background_Display Background
void background_Display_Background(GWidgetObject* wo, void* param)
{
(void)param;
gdispGFillArea(wo->g.display, wo->g.x, wo->g.y, wo->g.width, wo->g.height, White);
gdispGFillArea(wo->g.display, 0, 0, 480, 272, HTML2COLOR(0xFFFFFF));
}
// background_gray
void background_gray(GWidgetObject* wo, void* param)
{
(void)param;
gdispGFillArea(wo->g.display, wo->g.x, wo->g.y, wo->g.width, wo->g.height, White);
gdispGFillArea(wo->g.display, 0, 0, 480, 272, HTML2COLOR(0x606060));
}
#endif // _RENDERING_FUNCTIONS_H