From: John Tsiombikas Date: Tue, 23 Aug 2022 11:22:24 +0000 (+0300) Subject: lowered the acceptable zbuffer bits to unacceptable levels X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=588b694dd144a9ed6c40ccd0a4e335871acad22e;p=miniglut lowered the acceptable zbuffer bits to unacceptable levels --- diff --git a/miniglut.c b/miniglut.c index eea3d20..6856369 100644 --- a/miniglut.c +++ b/miniglut.c @@ -856,7 +856,7 @@ static XVisualInfo *choose_visual(unsigned int mode) } if(mode & GLUT_DEPTH) { *aptr++ = GLX_DEPTH_SIZE; - *aptr++ = 16; + *aptr++ = 8; } if(mode & GLUT_STENCIL) { *aptr++ = GLX_STENCIL_SIZE;