diff options
author | Emil Velikov <[email protected]> | 2015-02-28 17:20:01 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-03-05 14:45:53 +0000 |
commit | dd438ae34bdbaa6651cdd226d5fec15a892923bf (patch) | |
tree | 365d44e9b4c0b260ecfecf302887d61eac0edeeb /src/egl/main/eglarray.h | |
parent | d780012cd75c24394b043b107d17eb8199ae2dc7 (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/eglarray.h')
-rw-r--r-- | src/egl/main/eglarray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/main/eglarray.h b/src/egl/main/eglarray.h index bde5ba50f80..228f6c3d2ca 100644 --- a/src/egl/main/eglarray.h +++ b/src/egl/main/eglarray.h @@ -50,7 +50,7 @@ extern _EGLArray * _eglCreateArray(const char *name, EGLint init_size); -PUBLIC void +extern void _eglDestroyArray(_EGLArray *array, void (*free_cb)(void *)); @@ -66,7 +66,7 @@ void * _eglFindArray(_EGLArray *array, void *elem); -PUBLIC EGLint +extern EGLint _eglFilterArray(_EGLArray *array, void **data, EGLint size, _EGLArrayForEach filter, void *filter_data); |