integration on real hardware
This commit is contained in:
18
Draw.h
18
Draw.h
@@ -21,9 +21,25 @@
|
||||
#include <stdint.h>
|
||||
|
||||
void
|
||||
drawRect( const SstRegs * const sst,
|
||||
const int16_t x,
|
||||
const int16_t y,
|
||||
const int16_t tSizeX,
|
||||
const int16_t tSizeY);
|
||||
|
||||
static inline void
|
||||
drawSquare( const SstRegs * const sst,
|
||||
const int16_t x,
|
||||
const int16_t y,
|
||||
const int16_t tSize);
|
||||
const int16_t tSize)
|
||||
{
|
||||
drawRect(sst, x, y, tSize, tSize);
|
||||
}
|
||||
|
||||
void
|
||||
clearScreen( const SstRegs * const sst,
|
||||
const uint32_t u32Color,
|
||||
const int16_t u16SizeX,
|
||||
const int16_t u16SizeY);
|
||||
|
||||
#endif //_DEF_DRAW_H_
|
||||
|
||||
Reference in New Issue
Block a user