From: Dave Airlie Date: Fri, 23 Dec 2005 07:58:24 +0000 (+0000) Subject: fixup driver for some api changes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad960612cea4a42db915252d0fd4a6cc04de26bd;p=mesa.git fixup driver for some api changes --- diff --git a/src/mesa/drivers/dri/radeon/server/radeon_egl.c b/src/mesa/drivers/dri/radeon/server/radeon_egl.c index 8d9433c786a..b828da6a2b3 100644 --- a/src/mesa/drivers/dri/radeon/server/radeon_egl.c +++ b/src/mesa/drivers/dri/radeon/server/radeon_egl.c @@ -937,10 +937,10 @@ radeonFillInConfigs(_EGLDisplay *disp, unsigned pixel_bits, * If surface is EGL_NO_SURFACE, disable the screen's output. */ static EGLBoolean -radeonShowSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLScreenMESA screen, +radeonShowScreenSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLScreenMESA screen, EGLSurface surface, EGLModeMESA m) { - EGLBoolean b = _eglDRIShowSurfaceMESA(drv, dpy, screen, surface, m); + EGLBoolean b = _eglDRIShowScreenSurfaceMESA(drv, dpy, screen, surface, m); return b; } @@ -1019,7 +1019,7 @@ _eglMain(_EGLDisplay *dpy) /* then plug in our radeon-specific functions */ radeon->Base.API.Initialize = radeonInitialize; - radeon->Base.API.ShowSurfaceMESA = radeonShowSurfaceMESA; + radeon->Base.API.ShowScreenSurfaceMESA = radeonShowScreenSurfaceMESA; return &radeon->Base; }