From: Brian Paul Date: Mon, 16 May 2005 00:32:09 +0000 (+0000) Subject: remove MESA suffix from _eglInitScreenSurface, use swAlpha value X-Git-Tag: mesa-7.8~9228 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdeda9c45831457ee0c30b80d5947d2d90006ed8;p=platform%2Fupstream%2Fmesa.git remove MESA suffix from _eglInitScreenSurface, use swAlpha value --- diff --git a/src/mesa/drivers/dri/fb/fb_egl.c b/src/mesa/drivers/dri/fb/fb_egl.c index 0d91970..e139e91 100644 --- a/src/mesa/drivers/dri/fb/fb_egl.c +++ b/src/mesa/drivers/dri/fb/fb_egl.c @@ -681,7 +681,7 @@ fbCreateScreenSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLConfig cfg, int width, height, stride; surface = (fbSurface *)malloc(sizeof(*surface)); - surf = _eglInitScreenSurfaceMESA(&surface->Base, drv, dpy, cfg, attrib_list); + surf = _eglInitScreenSurface(&surface->Base, drv, dpy, cfg, attrib_list); if (surf == EGL_NO_SURFACE) { free(surface); return EGL_NO_SURFACE; @@ -717,7 +717,7 @@ fbCreateScreenSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLConfig cfg, swDepth, swStencil, swAccum, - 0, + swAlpha, GL_FALSE /* aux */); return surf;