/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | eglCreateWindowSurface.java | 25 Surface sur = null; in eglCreateWindowSurface() local 28 sur = surfaceView.getHolder().getSurface(); in eglCreateWindowSurface() 31 sur = holder.getSurface(); in eglCreateWindowSurface() 33 sur = (Surface) win; in eglCreateWindowSurface() 37 if (sur != null) { in eglCreateWindowSurface() 38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset); in eglCreateWindowSurface()
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | EGLImpl.java | 70 EGLSurfaceImpl sur = new EGLSurfaceImpl(); in eglCreatePixmapSurface() local 71 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list); in eglCreatePixmapSurface() 72 if (sur.mEGLSurface == 0) { in eglCreatePixmapSurface() 75 return sur; in eglCreatePixmapSurface() 79 Surface sur = null; in eglCreateWindowSurface() local 82 sur = surfaceView.getHolder().getSurface(); in eglCreateWindowSurface() 85 sur = holder.getSurface(); in eglCreateWindowSurface() 87 sur = (Surface) native_window; in eglCreateWindowSurface() 91 if (sur != null) { in eglCreateWindowSurface() 92 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list); in eglCreateWindowSurface() [all …]
|
/frameworks/support/v8/renderscript/jni/ |
D | android_rscompat_usage_io.cpp | 9 …ce(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur, dispatchTable disp… in AllocationSetSurface() argument 12 con, alloc, sur); in AllocationSetSurface() 15 if (sur != 0) { in AllocationSetSurface() 16 s = ANativeWindow_fromSurface(_env, sur); in AllocationSetSurface()
|
/frameworks/base/core/jni/ |
D | android_view_Surface.cpp | 90 sp<Surface> sur; in android_view_Surface_getSurface() local 94 sur = reinterpret_cast<Surface *>( in android_view_Surface_getSurface() 99 return sur; in android_view_Surface_getSurface() 230 static inline bool isSurfaceValid(const sp<Surface>& sur) { in isSurfaceValid() argument 231 return Surface::isValid(sur); in isSurfaceValid() 256 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject)); in nativeRelease() local 257 sur->decStrong(&sRefBaseOwner); in nativeRelease() 261 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject)); in nativeIsValid() local 262 return isSurfaceValid(sur) ? JNI_TRUE : JNI_FALSE; in nativeIsValid() 266 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject)); in nativeIsConsumerRunningBehind() local [all …]
|
D | com_google_android_gles_jni_EGLImpl.cpp | 169 EGLContext sur = getSurface(_env, surface); in jni_eglQuerySurface() local 175 success = eglQuerySurface(dpy, sur, attribute, base); in jni_eglQuerySurface() 252 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base); in jni_eglCreatePbufferSurface() local 254 return reinterpret_cast<jlong>(sur); in jni_eglCreatePbufferSurface() 300 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base); in jni_eglCreatePixmapSurface() local 303 if (sur != EGL_NO_SURFACE) { in jni_eglCreatePixmapSurface() 304 _env->SetLongField(out_sur, gSurface_EGLSurfaceFieldID, reinterpret_cast<jlong>(sur)); in jni_eglCreatePixmapSurface() 334 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base); in jni_eglCreateWindowSurface() local 336 return reinterpret_cast<jlong>(sur); in jni_eglCreateWindowSurface() 362 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base); in jni_eglCreateWindowSurfaceTexture() local [all …]
|
D | android_opengl_EGLExt.cpp | 137 (JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) { in android_eglPresentationTimeANDROID() argument 140 EGLSurface sur_native = (EGLSurface) fromEGLHandle(_env, eglsurfaceGetHandleID, sur); in android_eglPresentationTimeANDROID()
|
D | android_view_SurfaceControl.cpp | 370 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject)); in nativeSetDisplaySurface() local 371 if (sur != NULL) { in nativeSetDisplaySurface() 372 bufferProducer = sur->getIGraphicBufferProducer(); in nativeSetDisplaySurface()
|
/frameworks/base/rs/java/android/renderscript/ |
D | RenderScriptGL.java | 205 public void setSurface(SurfaceHolder sur, int w, int h) { in setSurface() argument 208 if (sur != null) { in setSurface() 209 s = sur.getSurface(); in setSurface() 224 public void setSurfaceTexture(SurfaceTexture sur, int w, int h) { in setSurfaceTexture() argument 229 if (sur != null) { in setSurfaceTexture() 230 s = new Surface(sur); in setSurfaceTexture()
|
D | RenderScript.java | 245 native void rsnContextSetSurface(long con, int w, int h, Surface sur); in rsnContextSetSurface() argument 246 synchronized void nContextSetSurface(int w, int h, Surface sur) { in nContextSetSurface() argument 248 rsnContextSetSurface(mContext, w, h, sur); in nContextSetSurface() 250 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur); in rsnContextSetSurfaceTexture() argument 251 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) { in nContextSetSurfaceTexture() argument 253 rsnContextSetSurfaceTexture(mContext, w, h, sur); in nContextSetSurfaceTexture() 507 native void rsnAllocationSetSurface(long con, long alloc, Surface sur); in rsnAllocationSetSurface() argument 508 synchronized void nAllocationSetSurface(long alloc, Surface sur) { in nAllocationSetSurface() argument 510 rsnAllocationSetSurface(mContext, alloc, sur); in nAllocationSetSurface()
|
/frameworks/native/opengl/libagl/ |
D | TextureObjectManager.cpp | 148 GGLSurface sur; in setImage() local 149 sur.version = sizeof(GGLSurface); in setImage() 150 sur.width = native_buffer->width; in setImage() 151 sur.height= native_buffer->height; in setImage() 152 sur.stride= native_buffer->stride; in setImage() 153 sur.format= native_buffer->format; in setImage() 154 sur.data = 0; in setImage() 155 setSurface(&sur); in setImage()
|
/frameworks/base/opengl/java/android/opengl/ |
D | EGL14.java | 250 Surface sur = null; in eglCreateWindowSurface() local 253 sur = surfaceView.getHolder().getSurface(); in eglCreateWindowSurface() 256 sur = holder.getSurface(); in eglCreateWindowSurface() 258 sur = (Surface) win; in eglCreateWindowSurface() 262 if (sur != null) { in eglCreateWindowSurface() 263 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset); in eglCreateWindowSurface()
|
D | EGLExt.java | 41 EGLSurface sur, in eglPresentationTimeANDROID() argument
|
/frameworks/rs/driver/ |
D | rsdGL.h | 75 RsNativeWindow sur); 79 uint32_t w, uint32_t h, RsNativeWindow sur);
|
D | rsdGL.cpp | 419 bool rsdGLSetInternalSurface(const Context *rsc, RsNativeWindow sur) { in rsdGLSetInternalSurface() argument 440 dc->gl.currentWndSurface = (ANativeWindow *)sur; in rsdGLSetInternalSurface() 461 bool rsdGLSetSurface(const Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) { in rsdGLSetSurface() argument 471 dc->gl.wndSurface = (ANativeWindow *)sur; in rsdGLSetSurface() 477 return rsdGLSetInternalSurface(rsc, sur); in rsdGLSetSurface()
|
/frameworks/native/opengl/tools/glgen/specs/egl/ |
D | EGLExt.spec | 1 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
|
/frameworks/rs/ |
D | rsContext.cpp | 613 void Context::setSurface(uint32_t w, uint32_t h, RsNativeWindow sur) { in setSurface() argument 615 mHal.funcs.setSurface(this, w, h, sur); in setSurface() 617 mHasSurface = sur != nullptr; in setSurface() 861 void rsi_ContextSetSurface(Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) { in rsi_ContextSetSurface() argument 862 rsc->setSurface(w, h, sur); in rsi_ContextSetSurface()
|
D | rsContext.h | 145 void updateSurface(void *sur); 157 void setSurface(uint32_t w, uint32_t h, RsNativeWindow sur);
|
D | rsg.spec | 102 param RsNativeWindow sur
|
D | rsAllocation.cpp | 657 void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) { in setSurface() argument 658 ANativeWindow *nw = (ANativeWindow *)sur; in setSurface() 912 void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) { in rsi_AllocationSetSurface() argument 914 alloc->setSurface(rsc, sur); in rsi_AllocationSetSurface()
|
/frameworks/native/libs/gui/tests/ |
D | SurfaceTextureClient_test.cpp | 524 EGLSurface sur; in TEST_F() member in android::TEST_F::MyThread 529 eglMakeCurrent(dpy, sur, sur, ctx); in TEST_F() 541 sur = eglGetCurrentSurface(EGL_DRAW); in TEST_F() 546 eglMakeCurrent(dpy, sur, sur, ctx); in TEST_F()
|
/frameworks/native/services/surfaceflinger/ |
D | DisplayDevice.cpp | 349 EGLSurface sur = eglGetCurrentSurface(EGL_DRAW); local 350 if (sur != mSurface) {
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ScreenRotationAnimation.java | 278 Surface sur = new Surface(); in ScreenRotationAnimation() local 279 sur.copyFrom(mSurfaceControl); in ScreenRotationAnimation() 282 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), sur); in ScreenRotationAnimation() local 287 sur.destroy(); in ScreenRotationAnimation()
|
/frameworks/native/libs/gui/ |
D | SurfaceComposerClient.cpp | 568 sp<SurfaceControl> sur; in createSurface() local 576 sur = new SurfaceControl(this, handle, gbp); in createSurface() 579 return sur; in createSurface()
|
/frameworks/native/opengl/include/EGL/ |
D | eglext.h | 595 EGLAPI EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time); 597 typedef EGLBoolean (EGLAPIENTRYP PFNEGLPRESENTATIONTIMEANDROID) (EGLDisplay dpy, EGLSurface sur, EG…
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcColorEquiv.cpp | 394 list->sur = surface; in main()
|