Mesa (master): softpipe: Use STATIC_ASSERT whenever possible.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Tue Apr 12 15:56:30 UTC 2016


Module: Mesa
Branch: master
Commit: b025c23cfe6069829601df46670366a2b625f245
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b025c23cfe6069829601df46670366a2b625f245

Author: Jose Fonseca <jfonseca at vmware.com>
Date:   Tue Apr 12 07:35:38 2016 +0100

softpipe: Use STATIC_ASSERT whenever possible.

Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>
Reviewed-by: Roland Scheidegger <sroland at vmware.com>

---

 src/gallium/drivers/softpipe/sp_tile_cache.c | 4 ++--
 1 file 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 9cc8ac1..c623326 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) {




More information about the mesa-commit mailing list