This commit is contained in:
2025-06-11 21:07:07 -05:00
parent 7d8e1051fe
commit ffaef7aa8d
5 changed files with 37 additions and 24 deletions

View File

@ -12,17 +12,15 @@
uint8_t RENDER_BACKGROUND_X = 0;
uint8_t RENDER_BACKGROUND_Y = 0;
uint8_t RENDER_STATUS = 0;
bool_t RENDER_DISPLAY_ON = false;
uint8_t RENDER_TILES[RENDER_TILE_COUNT] = { 0 };
uint8_t RENDER_BACKGROUND_TILEMAP[RENDER_BACKGROUND_TILE_COUNT] = { 0 };
Color RENDER_PALETTE[RENDER_PALETTE_COLOR_COUNT] = {
{ 102, 191, 47, 255 },
{ 78, 146, 35, 255 },
{ 48, 89, 22, 255 },
{ 18, 33, 8, 255 }
};
bool_t RENDER_DISPLAY_ON = false;
RenderTexture2D RENDER_BACKBUFFER;
RenderTexture2D RENDER_TILES_TEXTURE;
@ -159,7 +157,7 @@ void renderDisplayOff(void) {
RENDER_DISPLAY_ON = false;
}
void set_bkg_data(
void renderTilesBuffer(
const uint8_t index,
const uint8_t count,
const uint8_t *tiles
@ -175,7 +173,7 @@ void set_bkg_data(
);
}
void set_bkg_tiles(
void renderBackgroundTilesBufferRectangle(
const uint8_t xPos,
const uint8_t yPos,
const uint8_t width,