From: Ray Strode Date: Fri, 8 Jun 2007 03:53:06 +0000 (-0400) Subject: disable partial screen updates for now, because I think it might be buggy X-Git-Tag: 0.1.0~185 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23055e2f5bee42525b74a0e7bbe2d21cde98b483;p=thirdparty%2Fplymouth.git disable partial screen updates for now, because I think it might be buggy --- diff --git a/src/libply/ply-frame-buffer.c b/src/libply/ply-frame-buffer.c index 1a1f8130..f9539678 100644 --- a/src/libply/ply-frame-buffer.c +++ b/src/libply/ply-frame-buffer.c @@ -602,7 +602,11 @@ ply_frame_buffer_fill_with_color (ply_frame_buffer_t *buffer, ply_frame_buffer_fill_area_with_pixel_value (buffer, &cropped_area, pixel_value); +#ifdef DEBUGGING_FLUSHING_BUG ply_frame_buffer_add_area_to_flush_area (buffer, &cropped_area); +#else + ply_frame_buffer_add_area_to_flush_area (buffer, &buffer->area); +#endif return ply_frame_buffer_flush (buffer); } @@ -646,7 +650,11 @@ ply_frame_buffer_fill_with_argb32_data_at_opacity (ply_frame_buffer_t *buffe } } +#ifdef DEBUGGING_FLUSHING_BUG ply_frame_buffer_add_area_to_flush_area (buffer, &cropped_area); +#else + ply_frame_buffer_add_area_to_flush_area (buffer, &buffer->area); +#endif return ply_frame_buffer_flush (buffer); }