diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2015-02-28 17:20:01 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-03-05 14:45:53 +0000 |
commit | dd438ae34bdbaa6651cdd226d5fec15a892923bf (patch) | |
tree | 365d44e9b4c0b260ecfecf302887d61eac0edeeb /src/egl/main/eglcontext.h | |
parent | d780012cd75c24394b043b107d17eb8199ae2dc7 (diff) | |
download | external_mesa3d-dd438ae34bdbaa6651cdd226d5fec15a892923bf.zip external_mesa3d-dd438ae34bdbaa6651cdd226d5fec15a892923bf.tar.gz external_mesa3d-dd438ae34bdbaa6651cdd226d5fec15a892923bf.tar.bz2 |
egl/main: no longer export internal function
With the split of the gallium egl module we had previously it required
access to some of the internal functions. As the only build (automake)
that did this no longer builds it we can now appropriately hide those
functions.
Cc: 10.5 <mesa-stable@lists.freedesktop.org>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/egl/main/eglcontext.h')
-rw-r--r-- | src/egl/main/eglcontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/main/eglcontext.h b/src/egl/main/eglcontext.h index 5b574b5..241917f 100644 --- a/src/egl/main/eglcontext.h +++ b/src/egl/main/eglcontext.h @@ -64,7 +64,7 @@ struct _egl_context }; -PUBLIC EGLBoolean +extern EGLBoolean _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy, _EGLConfig *config, const EGLint *attrib_list); @@ -73,7 +73,7 @@ extern EGLBoolean _eglQueryContext(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *ctx, EGLint attribute, EGLint *value); -PUBLIC EGLBoolean +extern EGLBoolean _eglBindContext(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read, _EGLContext **old_ctx, _EGLSurface **old_draw, _EGLSurface **old_read); |