diff options
author | Jose Fonseca <[email protected]> | 2016-04-12 07:35:38 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2016-04-12 16:56:15 +0100 |
commit | b025c23cfe6069829601df46670366a2b625f245 (patch) | |
tree | 46d3a25a1a4ebd0785e6a89eaf789a7f72a635c4 /src/gallium | |
parent | 2f13d7543fd272b4dd49d1389854ebcd6302694e (diff) |
softpipe: Use STATIC_ASSERT whenever possible.
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_tile_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_tile_cache.c b/src/gallium/drivers/softpipe/sp_tile_cache.c index 9cc8ac12525..c6233261938 100644 --- a/src/gallium/drivers/softpipe/sp_tile_cache.c +++ b/src/gallium/drivers/softpipe/sp_tile_cache.c @@ -99,9 +99,9 @@ sp_create_tile_cache( struct pipe_context *pipe ) maxTexSize = 1 << (maxLevels - 1); assert(MAX_WIDTH >= maxTexSize); - assert(sizeof(union tile_address) == 4); + STATIC_ASSERT(sizeof(union tile_address) == 4); - assert((TILE_SIZE << TILE_ADDR_BITS) >= MAX_WIDTH); + STATIC_ASSERT((TILE_SIZE << TILE_ADDR_BITS) >= MAX_WIDTH); tc = CALLOC_STRUCT( softpipe_tile_cache ); if (tc) { |