From: Yuanhan Liu Date: Fri, 23 Sep 2011 05:34:26 +0000 (+0800) Subject: intel: fix the wrong code to detect null texture. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a662e7c18cab98f1b122f6766faf338725de673;p=mesa.git intel: fix the wrong code to detect null texture. There is already comments show how to detect a null texture. Fix the code to match the comments. This would fix the oglc divzero(basic.texQOrWEqualsZero) and divzero(basic.texTrivialPrim) test case fail. Signed-off-by: Yuanhan Liu Reviewed-by: Kenneth Graunke Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/intel/intel_mipmap_tree.c b/src/mesa/drivers/dri/intel/intel_mipmap_tree.c index b77c5d708f1..18427b5c8ea 100644 --- a/src/mesa/drivers/dri/intel/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/intel/intel_mipmap_tree.c @@ -136,7 +136,7 @@ intel_miptree_create(struct intel_context *intel, /* * pitch == 0 || height == 0 indicates the null texture */ - if (!mt || !mt->total_height) { + if (!mt || !mt->total_width || !mt->total_height) { free(mt); return NULL; }