summaryrefslogtreecommitdiffstats
path: root/src/egl/main/egllog.h
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2015-02-28 17:20:01 +0000
committerEmil Velikov <[email protected]>2015-03-05 14:45:53 +0000
commitdd438ae34bdbaa6651cdd226d5fec15a892923bf (patch)
tree365d44e9b4c0b260ecfecf302887d61eac0edeeb /src/egl/main/egllog.h
parentd780012cd75c24394b043b107d17eb8199ae2dc7 (diff)
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 <[email protected]> Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/egl/main/egllog.h')
-rw-r--r--src/egl/main/egllog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/main/egllog.h b/src/egl/main/egllog.h
index bac57208b85..12a477ee054 100644
--- a/src/egl/main/egllog.h
+++ b/src/egl/main/egllog.h
@@ -43,15 +43,15 @@
typedef void (*_EGLLogProc)(EGLint level, const char *msg);
-PUBLIC void
+extern void
_eglSetLogProc(_EGLLogProc logger);
-PUBLIC void
+extern void
_eglSetLogLevel(EGLint level);
-PUBLIC void
+extern void
_eglLog(EGLint level, const char *fmtStr, ...);