From: Brian Paul Date: Fri, 10 Dec 1999 19:13:14 +0000 (+0000) Subject: pass new args to gl_create_framebuffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c7fd2cfce9b5cd067837ac09309ea9eec9a96eb;p=mesa.git pass new args to gl_create_framebuffer --- diff --git a/src/mesa/drivers/glide/fxapi.c b/src/mesa/drivers/glide/fxapi.c index cb4230a5aec..568b30b9a03 100644 --- a/src/mesa/drivers/glide/fxapi.c +++ b/src/mesa/drivers/glide/fxapi.c @@ -1043,7 +1043,11 @@ fxMesaContext GLAPIENTRY fxMesaCreateContext(GLuint win, } - fxMesa->glBuffer=gl_create_framebuffer(fxMesa->glVis); + fxMesa->glBuffer=gl_create_framebuffer(fxMesa->glVis, + GL_FALSE, /* no software depth */ + fxMesa->glVis->StencilBits > 0, + fxMesa->glVis->AccumBits > 0, + fxMesa->glVis->AlphaBits > 0 ); if (!fxMesa->glBuffer) { errorstr = "gl_create_framebuffer"; goto errorhandler;