From: Keith Whitwell Date: Wed, 4 Nov 2009 23:33:08 +0000 (+0000) Subject: i965g: fix some asserts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e84e86ecb2e83b756a0153d315f946d60d695a54;p=mesa.git i965g: fix some asserts --- diff --git a/src/gallium/drivers/i965/brw_state_upload.c b/src/gallium/drivers/i965/brw_state_upload.c index 4132c6ac69b..a71af4d2b91 100644 --- a/src/gallium/drivers/i965/brw_state_upload.c +++ b/src/gallium/drivers/i965/brw_state_upload.c @@ -193,8 +193,8 @@ enum pipe_error brw_validate_state( struct brw_context *brw ) { const struct brw_fragment_shader *fp = brw->curr.fragment_shader; if (fp) { - assert(fp->info.file_max[TGSI_FILE_SAMPLER] < brw->curr.num_samplers && - fp->info.texture_max < brw->curr.num_textures); + assert(fp->info.file_max[TGSI_FILE_SAMPLER] < (int)brw->curr.num_samplers); + assert(fp->info.texture_max <= brw->curr.num_textures); } }