From: Brian Paul Date: Tue, 10 Jan 2006 15:48:56 +0000 (+0000) Subject: added a couple new assertions to help debug XGL problem X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1814d6541b1fb4bad67fb6277a6fcbe518453230;p=mesa.git added a couple new assertions to help debug XGL problem --- diff --git a/src/mesa/drivers/x11/xm_api.c b/src/mesa/drivers/x11/xm_api.c index 2bcbd2c3b01..437c9e28461 100644 --- a/src/mesa/drivers/x11/xm_api.c +++ b/src/mesa/drivers/x11/xm_api.c @@ -253,6 +253,7 @@ static int bits_per_pixel( XMesaVisual xmv ) { const int depth = xmv->nplanes; int i; + assert(depth > 0); for (i = 0; i < screenInfo.numPixmapFormats; i++) { if (screenInfo.formats[i].depth == depth) return screenInfo.formats[i].bitsPerPixel; @@ -1563,6 +1564,7 @@ XMesaVisual XMesaCreateVisual( XMesaDisplay *display, * ColormapEntries is either (1U << index_bits) or * (1U << max(redBits, greenBits, blueBits)). */ + assert(visinfo->nplanes > 0); v->nplanes = visinfo->nplanes; v->ColormapEntries = visinfo->ColormapEntries;