-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Closed
Labels
Description
It looks like eglDestroyContext was duplicated at some point, is this intentional/correct?
Lines 388 to 391 in c28a629
| // EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext context); | |
| eglDestroyContext__proxy: 'sync', | |
| eglDestroyContext__sig: 'iii', | |
| eglDestroyContext: function(display, context) { |
Lines 409 to 410 in c28a629
| // EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx); | |
| eglDestroyContext: function(display, context) { |
The second implementation doesn't actually destroy the context, and it appears to be the implementation that ends up being used.
Reactions are currently unavailable