summaryrefslogtreecommitdiffstats
path: root/src/egl/main/egldriver.h
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-02-28 17:20:01 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2015-03-05 14:45:53 +0000
commitdd438ae34bdbaa6651cdd226d5fec15a892923bf (patch)
tree365d44e9b4c0b260ecfecf302887d61eac0edeeb /src/egl/main/egldriver.h
parentd780012cd75c24394b043b107d17eb8199ae2dc7 (diff)
downloadexternal_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/egldriver.h')
-rw-r--r--src/egl/main/egldriver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h
index ccb70ac..11300ce 100644
--- a/src/egl/main/egldriver.h
+++ b/src/egl/main/egldriver.h
@@ -98,7 +98,7 @@ extern _EGLDriver *
_eglBuiltInDriverGLX(const char *args);
-PUBLIC _EGLDriver *
+extern _EGLDriver *
_eglMain(const char *args);
@@ -115,11 +115,11 @@ _eglUnloadDrivers(void);
/* defined in eglfallbacks.c */
-PUBLIC void
+extern void
_eglInitDriverFallbacks(_EGLDriver *drv);
-PUBLIC void
+extern void
_eglSearchPathForEach(EGLBoolean (*callback)(const char *, size_t, void *),
void *callback_data);