Searched defs:pixmap (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_opengl_EGL14.cpp748 /* EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list ) */
751 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) {
750 android_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) argument
H A Dcom_google_android_gles_jni_EGLImpl.cpp295 egl_native_pixmap_t pixmap; local
296 pixmap.version = sizeof(pixmap);
297 pixmap.width = nativeBitmap->width();
298 pixmap.height = nativeBitmap->height();
299 pixmap.stride = nativeBitmap->rowBytes() / nativeBitmap->bytesPerPixel();
300 pixmap.format = convertPixelFormat(nativeBitmap->colorType());
301 pixmap.data = (uint8_t*)ref->pixels();
304 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp525 NativePixmapType pixmap,
534 dp->disp.dpy, config, pixmap, attrib_list);
524 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
/frameworks/base/opengl/java/android/opengl/
H A DEGL14.java285 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
290 int pixmap,
287 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, int pixmap, int[] attrib_list, int offset ) argument
/frameworks/native/opengl/libagl/
H A Degl.cpp646 egl_native_pixmap_t const * pixmap);
662 egl_native_pixmap_t const * pixmap)
663 : egl_surface_t(dpy, config, depthFormat), nativePixmap(*pixmap)
666 depth.width = pixmap->width;
667 depth.height = pixmap->height;
1279 NativePixmapType pixmap, const EGLint* /*attrib_list*/)
1283 if (pixmap == 0)
1293 if (static_cast<egl_native_pixmap_t*>(pixmap)->version !=
1308 if (pixmap->format != pixelFormat)
1313 static_cast<egl_native_pixmap_t*>(pixmap));
659 egl_pixmap_surface_t(EGLDisplay dpy, EGLConfig config, int32_t depthFormat, egl_native_pixmap_t const * pixmap) argument
1278 createPixmapSurface(EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint* ) argument
1559 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
[all...]

Completed in 601 milliseconds