HomeSort by relevance Sort by last modified time
    Searched defs:sur (Results 1 - 4 of 4) sorted by null

  /frameworks/base/opengl/libagl/
TextureObjectManager.cpp 153 GGLSurface sur; local
154 sur.version = sizeof(GGLSurface);
155 sur.width = native_buffer->width;
156 sur.height= native_buffer->height;
157 sur.stride= native_buffer->stride;
158 sur.format= native_buffer->format;
159 sur.data = 0;
160 setSurface(&sur);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLImpl.java 66 EGLSurfaceImpl sur = new EGLSurfaceImpl(); local
67 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list);
68 if (sur.mEGLSurface == 0) {
71 return sur;
75 Surface sur; local
78 sur = surfaceView.getHolder().getSurface();
81 sur = holder.getSurface();
87 int eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list);
136 private native void _eglCreatePixmapSurface(EGLSurface sur, EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list);
  /frameworks/base/libs/surfaceflinger_client/
Surface.cpp 266 sp<ISurface> sur; local
271 sur = control->mSurface;
278 parcel->writeStrongBinder(sur!=0 ? sur->asBinder() : NULL);
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 184 EGLContext sur = getSurface(_env, surface); local
190 success = eglQuerySurface(dpy, sur, attribute, base);
257 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base); local
259 return (jint)sur;
307 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base); local
310 if (sur != EGL_NO_SURFACE) {
311 _env->SetIntField(out_sur, gSurface_EGLSurfaceFieldID, (int)sur);
340 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window, base); local
342 return (jint)sur;
427 EGLSurface sur = getSurface(_env, surface) local
472 EGLSurface sur = getSurface(_env, surface); local
    [all...]

Completed in 1994 milliseconds