From: Brian Date: Thu, 23 Aug 2007 20:59:27 +0000 (+0100) Subject: added GL_STENCIL_INDEX8_EXT X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7fe09341489ff61dc1a3a771fd3e75b3f866d6a9;p=mesa.git added GL_STENCIL_INDEX8_EXT --- diff --git a/src/mesa/state_tracker/st_cb_fbo.c b/src/mesa/state_tracker/st_cb_fbo.c index 430ac715e54..563b5add388 100644 --- a/src/mesa/state_tracker/st_cb_fbo.c +++ b/src/mesa/state_tracker/st_cb_fbo.c @@ -233,6 +233,9 @@ st_new_renderbuffer_fb(GLenum intFormat) case GL_DEPTH24_STENCIL8_EXT: strb->Base._BaseFormat = GL_DEPTH_STENCIL_EXT; break; + case GL_STENCIL_INDEX8_EXT: + strb->Base._BaseFormat = GL_STENCIL_INDEX; + break; default: _mesa_problem(NULL, "Unexpected intFormat in st_new_renderbuffer");