glsl: add cast to silence signed/unsigned comparison warning

This commit is contained in:
Brian Paul 2011-03-15 09:18:40 -06:00
parent d029ba9ec0
commit d350ef1682
1 changed files with 1 additions and 1 deletions

View File

@ -1157,7 +1157,7 @@ ir_texture::set_sampler(ir_dereference *sampler, const glsl_type *type)
this->sampler = sampler;
this->type = type;
assert(sampler->type->sampler_type == type->base_type);
assert(sampler->type->sampler_type == (int) type->base_type);
if (sampler->type->sampler_shadow)
assert(type->vector_elements == 4 || type->vector_elements == 1);
else