Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 1 | { |
| 2 | global: |
Nicolas Capens | 14534b5 | 2017-07-19 11:39:28 -0400 | [diff] [blame] | 3 | # EGL core functions |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 4 | eglBindAPI; |
| 5 | eglBindTexImage; |
| 6 | eglChooseConfig; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 7 | eglClientWaitSync; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 8 | eglCopyBuffers; |
| 9 | eglCreateContext; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 10 | eglCreateImage; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 11 | eglCreatePbufferFromClientBuffer; |
| 12 | eglCreatePbufferSurface; |
| 13 | eglCreatePixmapSurface; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 14 | eglCreatePlatformPixmapSurface; |
| 15 | eglCreatePlatformWindowSurface; |
| 16 | eglCreateSync; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 17 | eglCreateWindowSurface; |
| 18 | eglDestroyContext; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 19 | eglDestroyImage; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 20 | eglDestroySurface; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 21 | eglDestroySync; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 22 | eglGetConfigAttrib; |
| 23 | eglGetConfigs; |
| 24 | eglGetCurrentContext; |
| 25 | eglGetCurrentDisplay; |
| 26 | eglGetCurrentSurface; |
| 27 | eglGetDisplay; |
| 28 | eglGetError; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 29 | eglGetPlatformDisplay; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 30 | eglGetProcAddress; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 31 | eglGetSyncAttrib; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 32 | eglInitialize; |
| 33 | eglMakeCurrent; |
| 34 | eglQueryAPI; |
| 35 | eglQueryContext; |
| 36 | eglQueryString; |
| 37 | eglQuerySurface; |
| 38 | eglReleaseTexImage; |
| 39 | eglReleaseThread; |
| 40 | eglSurfaceAttrib; |
| 41 | eglSwapBuffers; |
| 42 | eglSwapInterval; |
| 43 | eglTerminate; |
| 44 | eglWaitClient; |
| 45 | eglWaitGL; |
| 46 | eglWaitNative; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 47 | eglWaitSync; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 48 | |
| 49 | # Extensions |
| 50 | eglCreateImageKHR; |
| 51 | eglDestroyImageKHR; |
| 52 | eglGetPlatformDisplayEXT; |
| 53 | eglCreatePlatformWindowSurfaceEXT; |
| 54 | eglCreatePlatformPixmapSurfaceEXT; |
| 55 | eglCreateSyncKHR; |
| 56 | eglDestroySyncKHR; |
| 57 | eglClientWaitSyncKHR; |
| 58 | eglGetSyncAttribKHR; |
| 59 | |
Nicolas Capens | 14534b5 | 2017-07-19 11:39:28 -0400 | [diff] [blame] | 60 | # Table of function pointers to disambiguate between libraries |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 61 | libEGL_swiftshader; |
| 62 | |
Nicolas Capens | 14534b5 | 2017-07-19 11:39:28 -0400 | [diff] [blame] | 63 | # Type-strings and type-infos required by sanitizers |
| 64 | _ZTS*; |
| 65 | _ZTI*; |
Nicolas Capens | 0bac285 | 2016-05-07 06:09:58 -0400 | [diff] [blame] | 66 | |
Nicolas Capens | 14534b5 | 2017-07-19 11:39:28 -0400 | [diff] [blame] | 67 | local: |
| 68 | *; |
Nicolas Capens | 48908cb | 2018-01-08 13:07:14 -0500 | [diff] [blame] | 69 | }; |