diff options
author | Adam Jackson <[email protected]> | 2015-04-01 10:39:45 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2015-05-11 14:19:37 -0400 |
commit | 7a58262e58d8edac3308777def0950032628edee (patch) | |
tree | 14f8fb5aa896855922a2671efe902cfd5bd7aec0 /src/egl/main/eglcurrent.c | |
parent | 13fa84e1bcf1e07c69bb678508f8cdb0912b57c5 (diff) |
egl: Remove skeleton implementation of EGL_MESA_screen_surface
No backend wires this up to anything, and the extension spec has been
marked obsolete for 4+ years.
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/egl/main/eglcurrent.c')
-rw-r--r-- | src/egl/main/eglcurrent.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/egl/main/eglcurrent.c b/src/egl/main/eglcurrent.c index 6ffc799d3de..835631d3ba3 100644 --- a/src/egl/main/eglcurrent.c +++ b/src/egl/main/eglcurrent.c @@ -282,14 +282,6 @@ _eglError(EGLint errCode, const char *msg) case EGL_NOT_INITIALIZED: s = "EGL_NOT_INITIALIZED"; break; -#ifdef EGL_MESA_screen_surface - case EGL_BAD_SCREEN_MESA: - s = "EGL_BAD_SCREEN_MESA"; - break; - case EGL_BAD_MODE_MESA: - s = "EGL_BAD_MODE_MESA"; - break; -#endif default: s = "other EGL error"; } |