nouveau: nv30: Do not use assert to return NULL
authorPatrice Mandin <patmandin@gmail.com>
Wed, 21 Oct 2009 20:01:03 +0000 (22:01 +0200)
committerPatrice Mandin <patmandin@gmail.com>
Wed, 21 Oct 2009 20:01:03 +0000 (22:01 +0200)
src/gallium/drivers/nv30/nv30_fragtex.c

index 822e1d8..a2ce947 100644 (file)
@@ -69,7 +69,7 @@ nv30_fragtex_build(struct nv30_context *nv30, int unit)
 
        tf = nv30_fragtex_format(pt->format);
        if (!tf)
-               assert(0);
+               return NULL;
 
        txf  = tf->format;
        txf |= ((pt->last_level>0) ? NV34TCL_TX_FORMAT_MIPMAP : 0);