mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-21 20:39:57 +01:00
Optimize examples
This commit is contained in:
parent
504d43f30d
commit
87d7718545
2 changed files with 0 additions and 6 deletions
|
@ -83,9 +83,6 @@ void clearScreen()
|
||||||
|
|
||||||
static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t blue)
|
static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t blue)
|
||||||
{
|
{
|
||||||
if (x < 0 || x >= S3L_RESOLUTION_X || y < 0 || y >= S3L_RESOLUTION_Y)
|
|
||||||
return;
|
|
||||||
|
|
||||||
uint32_t r = red & 0x000000FF;
|
uint32_t r = red & 0x000000FF;
|
||||||
r = r << 24;
|
r = r << 24;
|
||||||
|
|
||||||
|
|
|
@ -55,9 +55,6 @@ void clearScreen()
|
||||||
|
|
||||||
static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t blue)
|
static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t blue)
|
||||||
{
|
{
|
||||||
if (x < 0 || x >= S3L_RESOLUTION_X || y < 0 || y >= S3L_RESOLUTION_Y)
|
|
||||||
return;
|
|
||||||
|
|
||||||
uint32_t r = red & 0x000000FF;
|
uint32_t r = red & 0x000000FF;
|
||||||
r = r << 24;
|
r = r << 24;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue