From: Brian Paul Date: Thu, 9 Apr 2009 21:09:42 +0000 (-0600) Subject: i965simple: remove pipe_texture::compressed reference X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a35e7458264fe6f0c2f200904779516f64953c33;p=mesa.git i965simple: remove pipe_texture::compressed reference --- diff --git a/src/gallium/drivers/i965simple/brw_tex_layout.c b/src/gallium/drivers/i965simple/brw_tex_layout.c index f44bd17451b..8aea8c05581 100644 --- a/src/gallium/drivers/i965simple/brw_tex_layout.c +++ b/src/gallium/drivers/i965simple/brw_tex_layout.c @@ -240,7 +240,7 @@ static boolean brw_miptree_layout(struct brw_texture *tex) nblocksx = pf_get_nblocksx(&pt->block, width); nblocksy = pf_get_nblocksy(&pt->block, height); - if (pt->compressed) { + if (pf_is_compressed(pt->format)) { pack_y_pitch = (height + 3) / 4; if (pack_x_pitch > align(width, align_w)) {