diff options
author | Vinson Lee <[email protected]> | 2009-12-28 18:07:09 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-28 18:07:09 -0800 |
commit | 46c2196de3ed0c2745afb3a2e5180947576f07ea (patch) | |
tree | 3255f0860976d4571b52bafa0cb79e43a4362536 /src/gallium/drivers/llvmpipe | |
parent | e049ddb7549a45adde521d6f2899c2b74b4ff972 (diff) |
llvmpipe: Fix assert.
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_bld_depth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_depth.c b/src/gallium/drivers/llvmpipe/lp_bld_depth.c index 98ec1cb1b9d..d438c0e63d7 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_depth.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_depth.c @@ -90,7 +90,7 @@ lp_depth_type(const struct util_format_description *format_desc, if(format_desc->channel[swizzle].type == UTIL_FORMAT_TYPE_FLOAT) { type.floating = TRUE; - assert(swizzle = 0); + assert(swizzle == 0); assert(format_desc->channel[swizzle].size == format_desc->block.bits); } else if(format_desc->channel[swizzle].type == UTIL_FORMAT_TYPE_UNSIGNED) { |