From: Keith Whitwell Date: Wed, 21 Sep 2011 17:14:04 +0000 (-0600) Subject: util: single call to util_format_description in fill_rect X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c40c1599bb7782808a1387663d69cc9f99f4c68f;p=mesa.git util: single call to util_format_description in fill_rect --- diff --git a/src/gallium/auxiliary/util/u_rect.c b/src/gallium/auxiliary/util/u_rect.c index 56fcfac0693..59bebbcb7aa 100644 --- a/src/gallium/auxiliary/util/u_rect.c +++ b/src/gallium/auxiliary/util/u_rect.c @@ -97,11 +97,12 @@ util_fill_rect(ubyte * dst, unsigned height, union util_color *uc) { + const struct util_format_description *desc = util_format_description(format); unsigned i, j; unsigned width_size; - int blocksize = util_format_get_blocksize(format); - int blockwidth = util_format_get_blockwidth(format); - int blockheight = util_format_get_blockheight(format); + int blocksize = desc->block.bits / 8; + int blockwidth = desc->block.width; + int blockheight = desc->block.height; assert(blocksize > 0); assert(blockwidth > 0);