diff options
author | David 'Digit' Turner <digit@google.com> | 2014-06-04 12:29:30 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-06-04 12:29:30 +0000 |
commit | 183aa4f4213a03aa4081aec487bec101db64b3f7 (patch) | |
tree | d168f6f4f9bbf84aa2a3f13e8475776b5869c9c1 /emulator | |
parent | 3e924260e43a43057196e98976a5c4643eb7a480 (diff) | |
parent | 3fa9c79ebef389fee8f1ef5f35d0db626acbb7a0 (diff) | |
download | sdk-183aa4f4213a03aa4081aec487bec101db64b3f7.zip sdk-183aa4f4213a03aa4081aec487bec101db64b3f7.tar.gz sdk-183aa4f4213a03aa4081aec487bec101db64b3f7.tar.bz2 |
Merge "emulator/opengl: Fix compilation with Mingw64 toolchain." into idea133
Diffstat (limited to 'emulator')
-rw-r--r-- | emulator/opengl/host/libs/Translator/EGL/EglImp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulator/opengl/host/libs/Translator/EGL/EglImp.cpp b/emulator/opengl/host/libs/Translator/EGL/EglImp.cpp index 8896698..06dcf67 100644 --- a/emulator/opengl/host/libs/Translator/EGL/EglImp.cpp +++ b/emulator/opengl/host/libs/Translator/EGL/EglImp.cpp @@ -72,8 +72,8 @@ static EGLiface s_eglIface = { #define EGL_EXTENTIONS 2 //decleration -EGLImageKHR eglCreateImageKHR(EGLDisplay display, EGLContext context, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); -EGLBoolean eglDestroyImageKHR(EGLDisplay display, EGLImageKHR image); +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR(EGLDisplay display, EGLContext context, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR(EGLDisplay display, EGLImageKHR image); // extentions descriptors static ExtentionDescriptor s_eglExtentions[] = { |