diff options
author | Eric Engestrom <[email protected]> | 2016-12-08 00:36:03 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-12-09 17:33:43 +0000 |
commit | 9e1d35ca75852d5b6ad24a7df278b2c3efc31a46 (patch) | |
tree | c654c9fcaf62ad62037205af51e687e978095415 /src/egl/main | |
parent | 4729e1b511cf9411d4e2dfb6fba488f874d57acd (diff) |
egl: unexport _eglConvertIntsToAttribs
Nobody else makes use of this function.
We can always re-export it if someone ever needs it.
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/main')
-rw-r--r-- | src/egl/main/eglapi.c | 2 | ||||
-rw-r--r-- | src/egl/main/eglapi.h | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c index 925e8815bb0..1716ffa82a2 100644 --- a/src/egl/main/eglapi.c +++ b/src/egl/main/eglapi.c @@ -288,7 +288,7 @@ _eglSetFuncName(const char *funcName, _EGLDisplay *disp, EGLenum objectType, _EG * Return an EGL error code. The output parameter out_attrib_list is modified * only on success. */ -EGLint +static EGLint _eglConvertIntsToAttribs(const EGLint *int_list, EGLAttrib **out_attrib_list) { size_t len = 0; diff --git a/src/egl/main/eglapi.h b/src/egl/main/eglapi.h index 2dc89fc655a..710c5d860a5 100644 --- a/src/egl/main/eglapi.h +++ b/src/egl/main/eglapi.h @@ -200,9 +200,6 @@ struct _egl_api struct mesa_glinterop_export_out *out); }; -EGLint _eglConvertIntsToAttribs(const EGLint *int_list, - EGLAttrib **out_attrib_list); - #ifdef __cplusplus } #endif |