- First complete version of firmware. Currently being tested in the rehearsal room
- Added bunch of screens, fonts and images - Added script to read out frame buffer (function currently disabled in Firmware)
This commit is contained in:
@@ -68,7 +68,7 @@ void Display_Render_Simple_Text(Coordinates* coordinates_object, Object_Text* te
|
||||
void Display_Render_Simple_Image(Coordinates* coordinates_object, Object_Image_Color* image)
|
||||
{
|
||||
if(image->Rotation_Angle == 0) {
|
||||
Display_Image_Draw_Color_Alpha(coordinates_object->X, coordinates_object->Y, image->Image, image->Alpha);
|
||||
Display_Image_Draw_Color_Scaled_Alpha(coordinates_object->X, coordinates_object->Y, image->Image, image->Scale, image->Alpha);
|
||||
}
|
||||
else {
|
||||
Display_Image_Draw_Color_Rotated_Alpha(coordinates_object->X, coordinates_object->Y, image->Image, image->Rotation_Angle, image->Alpha);
|
||||
|
||||
Reference in New Issue
Block a user