From: Brian Paul Date: Mon, 20 Feb 2012 20:00:17 +0000 (-0700) Subject: st/glx: remove STENCIL_BITS, DEFAULT_SOFTWARE_DEPTH_BITS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f60a00743f6e03c3b90fa3a95e448e53bc150e1;p=mesa.git st/glx: remove STENCIL_BITS, DEFAULT_SOFTWARE_DEPTH_BITS Remove some Mesa/swrast stuff. --- diff --git a/src/gallium/state_trackers/glx/xlib/glx_api.c b/src/gallium/state_trackers/glx/xlib/glx_api.c index c9cf6c9bb86..9a487dcc27b 100644 --- a/src/gallium/state_trackers/glx/xlib/glx_api.c +++ b/src/gallium/state_trackers/glx/xlib/glx_api.c @@ -277,7 +277,7 @@ default_depth_bits(void) if (zEnv) zBits = atoi(zEnv); else - zBits = DEFAULT_SOFTWARE_DEPTH_BITS; + zBits = 24; return zBits; } @@ -326,7 +326,7 @@ create_glx_visual( Display *dpy, XVisualInfo *visinfo ) GL_TRUE, /* double */ GL_FALSE, /* stereo */ zBits, - STENCIL_BITS, + 8, /* stencil bits */ accBits, /* r */ accBits, /* g */ accBits, /* b */ @@ -977,7 +977,7 @@ choose_visual( Display *dpy, int screen, const int *list, GLboolean fbConfig ) /* we only support one size of stencil and accum buffers. */ if (stencil_size > 0) - stencil_size = STENCIL_BITS; + stencil_size = 8; if (accumRedSize > 0 || accumGreenSize > 0 ||