Browse Source

egl: remove remaining EGL_MESA_copy_context skeleton

With earlier commit (7a58262e58 egl: Remove skeleton implementation of
EGL_MESA_screen_surface) we've removed the skeleton implementation of
eglCopyContextMESA(). Just like EGL_MESA_screen_surface this extension
was never implemented in mesa.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
tags/10.6-branchpoint
Emil Velikov 10 years ago
parent
commit
0c4eef6a2c
3 changed files with 0 additions and 13 deletions
  1. 0
    11
      include/EGL/eglmesaext.h
  2. 0
    1
      src/egl/main/eglapi.c
  3. 0
    1
      src/egl/main/egldisplay.h

+ 0
- 11
include/EGL/eglmesaext.h View File

@@ -34,17 +34,6 @@ extern "C" {

#include <EGL/eglplatform.h>

#ifndef EGL_MESA_copy_context
#define EGL_MESA_copy_context 1

#ifdef EGL_EGLEXT_PROTOTYPES
EGLAPI EGLBoolean EGLAPIENTRY eglCopyContextMESA(EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask);
#endif /* EGL_EGLEXT_PROTOTYPES */

typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOPYCONTEXTMESA) (EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask);

#endif /* EGL_MESA_copy_context */

#ifndef EGL_MESA_drm_display
#define EGL_MESA_drm_display 1


+ 0
- 1
src/egl/main/eglapi.c View File

@@ -341,7 +341,6 @@ _eglCreateExtensionsString(_EGLDisplay *dpy)

char *exts = dpy->ExtensionsString;

_EGL_CHECK_EXTENSION(MESA_copy_context);
_EGL_CHECK_EXTENSION(MESA_drm_display);
_EGL_CHECK_EXTENSION(MESA_drm_image);
_EGL_CHECK_EXTENSION(MESA_configless_context);

+ 0
- 1
src/egl/main/egldisplay.h View File

@@ -90,7 +90,6 @@ struct _egl_resource
*/
struct _egl_extensions
{
EGLBoolean MESA_copy_context;
EGLBoolean MESA_drm_display;
EGLBoolean MESA_drm_image;
EGLBoolean MESA_configless_context;

Loading…
Cancel
Save