Searched defs:sur (Results 1 - 21 of 21) sorted by relevance

/frameworks/support/v8/renderscript/jni/
H A Dandroid_rscompat_usage_io.cpp9 extern "C" void AllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur, dispatchTable dispatchTab) argument
12 con, alloc, sur);
15 if (sur != 0) {
16 s = ANativeWindow_fromSurface(_env, sur);
H A Dandroid_renderscript_RenderScript.cpp1031 nAllocationSetSurface(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jobject sur) argument
1033 ioDispatch.sAllocationSetSurface(_env, _this, (RsContext)con, (RsAllocation)alloc, sur, dispatchTab);
/frameworks/base/opengl/java/android/opengl/
H A DEGLExt.java37 // C function EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
41 EGLSurface sur,
39 eglPresentationTimeANDROID( EGLDisplay dpy, EGLSurface sur, long time ) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_EGLExt.cpp134 /* EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time ) */
137 (JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) {
140 EGLSurface sur_native = (EGLSurface) fromEGLHandle(_env, eglsurfaceGetHandleID, sur);
136 android_eglPresentationTimeANDROID(JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) argument
H A Dandroid_view_Surface.cpp90 sp<Surface> sur; local
94 sur = reinterpret_cast<Surface *>(
99 return sur;
230 static inline bool isSurfaceValid(const sp<Surface>& sur) { argument
231 return Surface::isValid(sur);
256 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject));
257 sur->decStrong(&sRefBaseOwner);
261 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject));
262 return isSurfaceValid(sur) ? JNI_TRUE : JNI_FALSE;
266 sp<Surface> sur(reinterpret_cas
431 sp<Surface> sur; local
[all...]
H A Dcom_google_android_gles_jni_EGLImpl.cpp169 EGLContext sur = getSurface(_env, surface); local
175 success = eglQuerySurface(dpy, sur, attribute, base);
252 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base); local
254 return reinterpret_cast<jlong>(sur);
300 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base); local
303 if (sur != EGL_NO_SURFACE) {
304 _env->SetLongField(out_sur, gSurface_EGLSurfaceFieldID, reinterpret_cast<jlong>(sur));
334 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base); local
336 return reinterpret_cast<jlong>(sur);
362 EGLSurface sur local
449 EGLSurface sur = getSurface(_env, surface); local
494 EGLSurface sur = getSurface(_env, surface); local
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DRenderScriptGL.java203 * @param sur
205 public void setSurface(SurfaceHolder sur, int w, int h) { argument
208 if (sur != null) {
209 s = sur.getSurface();
222 * @param sur
224 public void setSurfaceTexture(SurfaceTexture sur, int w, int h) { argument
226 //android.util.Log.v("rs", "set surface " + sur + " w=" + w + ", h=" + h);
229 if (sur != null) {
230 s = new Surface(sur);
H A DAllocation.java3035 * @param sur Surface to associate with allocation
3037 public void setSurface(Surface sur) { argument
3043 mRS.nAllocationSetSurface(getID(mRS), sur);
H A DRenderScript.java245 native void rsnContextSetSurface(long con, int w, int h, Surface sur); argument
246 synchronized void nContextSetSurface(int w, int h, Surface sur) { argument
248 rsnContextSetSurface(mContext, w, h, sur);
250 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur); argument
251 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) { argument
253 rsnContextSetSurfaceTexture(mContext, w, h, sur);
507 native void rsnAllocationSetSurface(long con, long alloc, Surface sur); argument
508 synchronized void nAllocationSetSurface(long alloc, Surface sur) { argument
510 rsnAllocationSetSurface(mContext, alloc, sur);
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp524 EGLSurface sur; member in class:android::MyThread
529 eglMakeCurrent(dpy, sur, sur, ctx);
541 sur = eglGetCurrentSurface(EGL_DRAW);
546 eglMakeCurrent(dpy, sur, sur, ctx);
/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp148 GGLSurface sur; local
149 sur.version = sizeof(GGLSurface);
150 sur.width = native_buffer->width;
151 sur.height= native_buffer->height;
152 sur.stride= native_buffer->stride;
153 sur.format= native_buffer->format;
154 sur.data = 0;
155 setSurface(&sur);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java70 EGLSurfaceImpl sur = new EGLSurfaceImpl();
71 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list);
72 if (sur.mEGLSurface == 0) {
75 return sur;
79 Surface sur = null;
82 sur = surfaceView.getHolder().getSurface();
85 sur = holder.getSurface();
87 sur = (Surface) native_window;
91 if (sur != null) {
92 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_lis
150 _eglCreatePixmapSurface(EGLSurface sur, EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp349 EGLSurface sur = eglGetCurrentSurface(EGL_DRAW); local
350 if (sur != mSurface) {
H A DSurfaceFlinger.cpp3426 sp<Surface> sur = new Surface(producer, false); local
3427 ANativeWindow* window = sur.get();
H A DSurfaceFlinger_hwc1.cpp3442 sp<Surface> sur = new Surface(producer, false); local
3443 ANativeWindow* window = sur.get();
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp566 sp<SurfaceControl> sur; local
574 sur = new SurfaceControl(this, handle, gbp);
577 return sur;
/frameworks/rs/
H A DrsContext.cpp611 void Context::setSurface(uint32_t w, uint32_t h, RsNativeWindow sur) { argument
613 mHal.funcs.setSurface(this, w, h, sur);
615 mHasSurface = sur != nullptr;
859 void rsi_ContextSetSurface(Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) { argument
860 rsc->setSurface(w, h, sur);
H A DrsAllocation.cpp657 void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) { argument
658 ANativeWindow *nw = (ANativeWindow *)sur;
912 void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) { argument
914 alloc->setSurface(rsc, sur);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java2725 * @param sur Surface to associate with allocation
2727 public void setSurface(Surface sur) { argument
2733 mRS.nAllocationSetSurface(getID(mRS), sur);
H A DRenderScript.java422 native void rsnAllocationSetSurface(long con, long alloc, Surface sur); argument
423 synchronized void nAllocationSetSurface(long alloc, Surface sur) { argument
425 rsnAllocationSetSurface(mContext, alloc, sur);
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1265 nAllocationSetSurface(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jobject sur) argument
1269 (RsAllocation)alloc, (Surface *)sur);
1273 if (sur != 0) {
1274 s = android_view_Surface_getSurface(_env, sur);

Completed in 422 milliseconds