softpipe: additional assertions
authorBrian Paul <brianp@vmware.com>
Tue, 22 Sep 2009 22:59:28 +0000 (16:59 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 22 Sep 2009 22:59:28 +0000 (16:59 -0600)
src/gallium/drivers/softpipe/sp_tex_sample.c

index 50460df7cdf999b38381297f56a1023d0e4604fe..be210d5671bc59b5303743bd3279eeb7d3cc0520 100644 (file)
@@ -938,6 +938,7 @@ img_filter_2d_nearest(struct tgsi_sampler *tgsi_sampler,
    height = texture->height[level0];
 
    assert(width > 0);
+   assert(height > 0);
  
    addr.value = 0;
    addr.bits.level = samp->level;
@@ -983,6 +984,7 @@ img_filter_cube_nearest(struct tgsi_sampler *tgsi_sampler,
    height = texture->height[level0];
 
    assert(width > 0);
+   assert(height > 0);
  
    addr.value = 0;
    addr.bits.level = samp->level;
@@ -1104,6 +1106,7 @@ img_filter_2d_linear(struct tgsi_sampler *tgsi_sampler,
    height = texture->height[level0];
 
    assert(width > 0);
+   assert(height > 0);
 
    addr.value = 0;
    addr.bits.level = samp->level;
@@ -1151,6 +1154,7 @@ img_filter_cube_linear(struct tgsi_sampler *tgsi_sampler,
    height = texture->height[level0];
 
    assert(width > 0);
+   assert(height > 0);
 
    addr.value = 0;
    addr.bits.level = samp->level;