From 29fc97606b13edb20fd1fc5351a066ba85968c77 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 27 Apr 2010 17:05:56 -0600 Subject: osdemos: replace assertion with error handler --- progs/osdemos/ostest1.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/progs/osdemos/ostest1.c b/progs/osdemos/ostest1.c index 000b8c4a78..5a00fdb246 100644 --- a/progs/osdemos/ostest1.c +++ b/progs/osdemos/ostest1.c @@ -399,7 +399,11 @@ test(GLenum type, GLint bits, const char *filename) /* sanity checks */ glGetIntegerv(GL_RED_BITS, &cBits); - assert(cBits == bits); + if (cBits != bits) { + fprintf(stderr, "Unable to create %d-bit/channel renderbuffer.\n", bits); + fprintf(stderr, "May need to recompile Mesa with CHAN_BITS=16 or 32.\n"); + return 0; + } glGetIntegerv(GL_GREEN_BITS, &cBits); assert(cBits == bits); glGetIntegerv(GL_BLUE_BITS, &cBits); -- cgit v1.2.3