From: Ray Strode Date: Thu, 24 May 2007 21:27:01 +0000 (-0400) Subject: drop unused field from fb struct X-Git-Tag: 0.1.0~242 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=754c779af804a3fd55bab73f507a0305866da66b;p=thirdparty%2Fplymouth.git drop unused field from fb struct --- diff --git a/src/ply-frame-buffer.c b/src/ply-frame-buffer.c index c30d6686..e8eee9dc 100644 --- a/src/ply-frame-buffer.c +++ b/src/ply-frame-buffer.c @@ -65,7 +65,6 @@ struct _ply_frame_buffer uint32_t bits_for_blue; uint32_t bits_for_alpha; - unsigned int bits_per_pixel; unsigned int bytes_per_pixel; ply_frame_buffer_area_t area; ply_frame_buffer_area_t area_to_flush; @@ -150,7 +149,6 @@ ply_frame_buffer_query_device (ply_frame_buffer_t *buffer) return false; } - buffer->bits_per_pixel = variable_screen_info.bits_per_pixel; buffer->area.x = variable_screen_info.xoffset; buffer->area.y = variable_screen_info.yoffset; buffer->area.width = variable_screen_info.xres;