eglCreatePixmapSurface.cpp revision 7969999ddd959a6e5e2fb5842ea0e17ac6bb13a5
1/* EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list ) */
2static jobject
3android_eglCreatePixmapSurface
4  (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) {
5    jniThrowException(_env, "java/lang/UnsupportedOperationException",
6        "eglCreatePixmapSurface");
7    return toEGLHandle(_env, eglsurfaceClass, eglsurfaceConstructor, (EGLSurface) 0);
8}
9
10