Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. | ../../git/src/compositor/hwcimage.cpp:545:27: error: 'void* (* eglCreateImageKHR)(EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*)' redeclared as different kind of symbol
  2. | static _eglCreateImageKHR eglCreateImageKHR = 0;
  3. | ^
  4. | In file included from ../../git/src/compositor/hwcimage.cpp:29:0:
  5. | /home/vgrade/open-embedded/nemotablet/build/tmp-glibc/sysroots/raspberrypi2/usr/include/EGL/eglext.h:89:32: note: previous declaration 'void* eglCreateImageKHR(EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*)'
  6. | EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
  7. | ^
  8. | ../../git/src/compositor/hwcimage.cpp:546:28: error: 'EGLBoolean (* eglDestroyImageKHR)(EGLDisplay, EGLImageKHR)' redeclared as different kind of symbol
  9. | static _eglDestroyImageKHR eglDestroyImageKHR = 0;
  10. | ^
  11. | In file included from ../../git/src/compositor/hwcimage.cpp:29:0:
  12. | /home/vgrade/open-embedded/nemotablet/build/tmp-glibc/sysroots/raspberrypi2/usr/include/EGL/eglext.h:90:31: note: previous declaration 'EGLBoolean eglDestroyImageKHR(EGLDisplay, EGLImageKHR)'
  13. | EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image);
  14. | ^
  15. | ../../git/src/compositor/hwcimage.cpp: In function 'void hwcimage_initialize()':
  16. | ../../git/src/compositor/hwcimage.cpp:562:23: error: assignment of function 'void* eglCreateImageKHR(EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*)'
  17. | eglCreateImageKHR = (_eglCreateImageKHR) eglGetProcAddress("eglCreateImageKHR");
  18. | ^
  19. | ../../git/src/compositor/hwcimage.cpp:562:23: error: cannot convert '_eglCreateImageKHR {aka void* (*)(void*, void*, unsigned int, void*, const int*)}' to 'void*(EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*) {aka void*(void*, void*, unsigned int, void*, const int*)}' in assignment
  20. | ../../git/src/compositor/hwcimage.cpp:563:24: error: assignment of function 'EGLBoolean eglDestroyImageKHR(EGLDisplay, EGLImageKHR)'
  21. | eglDestroyImageKHR = (_eglDestroyImageKHR) eglGetProcAddress("eglDestroyImageKHR");
  22. | ^
  23. | ../../git/src/compositor/hwcimage.cpp:563:24: error: cannot convert '_eglDestroyImageKHR {aka unsigned int (*)(void*, void*)}' to 'EGLBoolean(EGLDisplay, EGLImageKHR) {aka unsigned int(void*, void*)}' in assignment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement