Guest User

Untitled

a guest
Apr 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. [root@localhost base]# git diff HEAD opengl/libs/EGL/egl.cpp
  2. diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp
  3. index ffb3189..88aea66 100644
  4. --- a/opengl/libs/EGL/egl.cpp
  5. +++ b/opengl/libs/EGL/egl.cpp
  6. @@ -1436,6 +1436,7 @@ __eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
  7. // in which case we must make sure we've initialized ourselves, this
  8. // happens the first time egl_get_display() is called.
  9.  
  10. + LOGD("eglGetProcAddress called, procname=%s",procname);
  11. if (egl_init_drivers() == EGL_FALSE) {
  12. setError(EGL_BAD_PARAMETER, NULL);
  13. return NULL;
  14. @@ -1467,6 +1468,8 @@ __eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
  15. }
  16. }
  17. #endif
  18. + LOGD("eglGetProcAddress: returning NULL");
  19. + return NULL;
  20.  
  21. // this protects accesses to gGLExtentionMap and gGLExtentionSlot
  22. pthread_mutex_lock(&gInitDriverMutex);
  23.  
  24.  
  25.  
  26. 12-08 23:18:51.798 D/libEGL ( 2647): eglGetProcAddress called, procname=glBindBufferOES
  27. 12-08 23:18:51.798 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  28. 12-08 23:18:51.798 D/libEGL ( 2647): eglGetProcAddress called, procname=glDeleteBuffersOES
  29. 12-08 23:18:51.798 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  30. 12-08 23:18:51.808 D/libEGL ( 2647): eglGetProcAddress called, procname=glGenBuffersOES
  31. 12-08 23:18:51.808 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  32. 12-08 23:18:51.808 D/libEGL ( 2647): eglGetProcAddress called, procname=glBufferDataOES
  33. 12-08 23:18:51.818 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  34. 12-08 23:18:51.818 D/libEGL ( 2647): eglGetProcAddress called, procname=glBufferSubDataOES
  35. 12-08 23:18:51.818 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  36. 12-08 23:18:51.818 D/libEGL ( 2647): eglGetProcAddress called, procname=glGetBufferParameterivOES
  37. 12-08 23:18:51.818 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  38. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=glBindBufferARB
  39. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=glDeleteBuffersARB
  40. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=glGenBuffersARB
  41. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=glBufferDataARB
  42. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=glBufferSubDataARB
  43. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=glGetBufferParameterivARB
  44. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress: returning NULL
  45. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=eglSwapIntervalOES
  46. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=eglSurfaceScaleEnableQUALCOMM
  47. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=eglSetSurfaceScaleQUALCOMM
  48. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=eglGetSurfaceScaleQUALCOMM
  49. 12-08 23:18:51.828 D/libEGL ( 2647): eglGetProcAddress called, procname=eglGetSurfaceScaleCapsQUALCOMM
Add Comment
Please, Sign In to add comment