Add automatic flush for the LCD screen
This commit is contained in:
parent
995002fa91
commit
3eb8785e87
|
@ -262,6 +262,7 @@ LLDSPEC void gdisp_lld_blit_area(GDisplay *g) {
|
||||||
srcbit++;
|
srcbit++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
g->flags |= GDISP_FLG_NEEDFLUSH;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if GDISP_NEED_CONTROL && GDISP_HARDWARE_CONTROL
|
#if GDISP_NEED_CONTROL && GDISP_HARDWARE_CONTROL
|
||||||
|
|
|
@ -127,8 +127,6 @@ bool display_logo(keyframe_animation_t* animation, visualizer_state_t* state) {
|
||||||
// if you have full screen image, then just use 128 and 32 for both source and target dimensions
|
// if you have full screen image, then just use 128 and 32 for both source and target dimensions
|
||||||
gdispGBlitArea(GDISP, 0, 0, 128, 32, 0, 0, 128, (pixel_t*)image_data_lcd_logo);
|
gdispGBlitArea(GDISP, 0, 0, 128, 32, 0, 0, 128, (pixel_t*)image_data_lcd_logo);
|
||||||
|
|
||||||
// Always remember to flush the display
|
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,8 +101,6 @@ bool display_logo(keyframe_animation_t* animation, visualizer_state_t* state) {
|
||||||
// if you have full screen image, then just use 128 and 32 for both source and target dimensions
|
// if you have full screen image, then just use 128 and 32 for both source and target dimensions
|
||||||
gdispGBlitArea(GDISP, 0, 0, 128, 32, 0, 0, 128, (pixel_t*)image_data_lcd_logo);
|
gdispGBlitArea(GDISP, 0, 0, 128, 32, 0, 0, 128, (pixel_t*)image_data_lcd_logo);
|
||||||
|
|
||||||
// Always remember to flush the display
|
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,6 @@ bool lcd_keyframe_display_layer_text(keyframe_animation_t* animation, visualizer
|
||||||
(void)animation;
|
(void)animation;
|
||||||
gdispClear(White);
|
gdispClear(White);
|
||||||
gdispDrawString(0, 10, state->layer_text, state->font_dejavusansbold12, Black);
|
gdispDrawString(0, 10, state->layer_text, state->font_dejavusansbold12, Black);
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,7 +61,6 @@ bool lcd_keyframe_display_layer_bitmap(keyframe_animation_t* animation, visualiz
|
||||||
gdispDrawString(0, 10, layer_buffer, state->font_fixed5x8, Black);
|
gdispDrawString(0, 10, layer_buffer, state->font_fixed5x8, Black);
|
||||||
format_layer_bitmap_string(state->status.default_layer >> 16, state->status.layer >> 16, layer_buffer);
|
format_layer_bitmap_string(state->status.default_layer >> 16, state->status.layer >> 16, layer_buffer);
|
||||||
gdispDrawString(0, 20, layer_buffer, state->font_fixed5x8, Black);
|
gdispDrawString(0, 20, layer_buffer, state->font_fixed5x8, Black);
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +99,6 @@ bool lcd_keyframe_display_mods_bitmap(keyframe_animation_t* animation, visualize
|
||||||
format_mods_bitmap_string(state->status.mods, status_buffer);
|
format_mods_bitmap_string(state->status.mods, status_buffer);
|
||||||
gdispDrawString(0, 20, status_buffer, state->font_fixed5x8, Black);
|
gdispDrawString(0, 20, status_buffer, state->font_fixed5x8, Black);
|
||||||
|
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -140,7 +137,6 @@ bool lcd_keyframe_display_led_states(keyframe_animation_t* animation, visualizer
|
||||||
get_led_state_string(output, state);
|
get_led_state_string(output, state);
|
||||||
gdispClear(White);
|
gdispClear(White);
|
||||||
gdispDrawString(0, 10, output, state->font_dejavusansbold12, Black);
|
gdispDrawString(0, 10, output, state->font_dejavusansbold12, Black);
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,7 +151,6 @@ bool lcd_keyframe_display_layer_and_led_states(keyframe_animation_t* animation,
|
||||||
y = 17;
|
y = 17;
|
||||||
}
|
}
|
||||||
gdispDrawString(0, y, state->layer_text, state->font_dejavusansbold12, Black);
|
gdispDrawString(0, y, state->layer_text, state->font_dejavusansbold12, Black);
|
||||||
gdispFlush();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -313,6 +313,10 @@ static DECLARE_THREAD_FUNCTION(visualizerThread, arg) {
|
||||||
gdispGFlush(LED_DISPLAY);
|
gdispGFlush(LED_DISPLAY);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef LCD_ENABLE
|
||||||
|
gdispGFlush(LCD_DISPLAY);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef EMULATOR
|
#ifdef EMULATOR
|
||||||
draw_emulator();
|
draw_emulator();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue