From 1814d6541b1fb4bad67fb6277a6fcbe518453230 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 10 Jan 2006 15:48:56 +0000 Subject: [PATCH] added a couple new assertions to help debug XGL problem --- src/mesa/drivers/x11/xm_api.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.30.2