summaryrefslogtreecommitdiffstats
path: root/opengl/libs
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2011-01-31 11:32:33 -0800
committerAndroid Code Review <code-review@android.com>2011-01-31 11:32:33 -0800
commit056340ac95f233090990d77266d89aad3b60f913 (patch)
tree6de7d20303f7778706e1d1dd4c0beaece8fd0d7e /opengl/libs
parent25503f1c9f0b5f718052b71dc5b21d1c8576d015 (diff)
parent235ec8ad24293fbfbd282d5379ea8e225ef083bc (diff)
downloadframeworks_base-056340ac95f233090990d77266d89aad3b60f913.zip
frameworks_base-056340ac95f233090990d77266d89aad3b60f913.tar.gz
frameworks_base-056340ac95f233090990d77266d89aad3b60f913.tar.bz2
Merge "stubs"
Diffstat (limited to 'opengl/libs')
-rw-r--r--opengl/libs/EGL/egl.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp
index ab260d5..f029bfe 100644
--- a/opengl/libs/EGL/egl.cpp
+++ b/opengl/libs/EGL/egl.cpp
@@ -1815,3 +1815,8 @@ EGLBoolean eglSetSwapRectangleANDROID(EGLDisplay dpy, EGLSurface draw,
}
return setError(EGL_BAD_DISPLAY, NULL);
}
+
+EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync) { return 0; }
+EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) { return 0; }
+EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout) { return 0; }
+