mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
fixed wrong return value in radeonShowSurfaceMESA()
This commit is contained in:
parent
b8829facc7
commit
a3d2c69e61
1 changed files with 2 additions and 2 deletions
|
|
@ -910,8 +910,8 @@ static EGLBoolean
|
|||
radeonShowSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLScreenMESA screen,
|
||||
EGLSurface surface, EGLModeMESA m)
|
||||
{
|
||||
_eglDRIShowSurfaceMESA(drv, dpy, screen, surface, m);
|
||||
return EGL_FALSE;
|
||||
EGLBoolean b = _eglDRIShowSurfaceMESA(drv, dpy, screen, surface, m);
|
||||
return b;
|
||||
}
|
||||
|
||||
static EGLBoolean
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue