diff options
Diffstat (limited to 'Gfx.h')
| -rw-r--r-- | Gfx.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -59,7 +59,7 @@ typedef struct t_Camera TYPE_CAMERA; * Global prototypes * *************************************/ -void GfxDrawSprite(TYPE_SPRITE * ptrSprite); +void GfxDrawSprite(TYPE_SPRITE* ptrSprite); void GfxDrawCircle(uint16_t x, uint16_t y, uint8_t radius, int8_t color); void GfxDrawRectangle(uint8_t x, uint8_t y, uint8_t w, uint8_t h, int8_t color); void GfxFillRectangle(uint8_t x, uint8_t y, uint8_t w, uint8_t h, int8_t color); @@ -68,7 +68,7 @@ bool GfxRefreshNeeded(void); void GfxShowKeyboard(char* str, uint8_t length); uint8_t GfxGetWidthFromSpriteData(const uint8_t* sprData); uint8_t GfxGetHeightFromSpriteData(const uint8_t* sprData); -bool GfxIsSpriteInsideScreenArea(TYPE_SPRITE * spr); +bool GfxIsSpriteInsideScreenArea(TYPE_SPRITE* spr); void GfxClearScreen(void); #ifdef __cplusplus void GfxPrintText_Flash(const __FlashStringHelper * str); @@ -76,7 +76,6 @@ void GfxPrintText_Flash(const __FlashStringHelper * str); void GfxPrintText(const char* str, uint8_t x, uint8_t y); void GfxPrintTextFont(const char* str, const uint8_t* font, uint8_t x, uint8_t y); void GfxInit(void); -void GfxRenderTiles(TYPE_CAMERA* ptrCamera); #ifdef __cplusplus } |
