HomeSort by relevance Sort by last modified time
    Searched refs:sur (Results 1 - 25 of 41) sorted by null

1 2

  /frameworks/native/opengl/tools/glgen/specs/egl/
EGLExt.spec 1 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 25 Surface sur = null; local
28 sur = surfaceView.getHolder().getSurface();
31 sur = holder.getSurface();
33 sur = (Surface) win;
37 if (sur != null) {
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
  /frameworks/base/opengl/java/android/opengl/
EGLExt.java 38 // C function EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
42 EGLSurface sur,
EGL14.java 244 Surface sur = null; local
247 sur = surfaceView.getHolder().getSurface();
250 sur = holder.getSurface();
252 sur = (Surface) win;
256 if (sur != null) {
257 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLImpl.java 70 EGLSurfaceImpl sur = new EGLSurfaceImpl(); local
71 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list);
72 if (sur.mEGLSurface == 0) {
75 return sur;
79 Surface sur = null; local
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_list)
    [all...]
  /frameworks/base/core/jni/
android_view_Surface.cpp 93 sp<Surface> sur; local
97 sur = reinterpret_cast<Surface *>(
101 return sur;
130 static inline bool isSurfaceValid(const sp<Surface>& sur) {
131 return Surface::isValid(sur);
157 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject));
158 sur->decStrong(&sRefBaseOwner);
162 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject));
163 return isSurfaceValid(sur) ? JNI_TRUE : JNI_FALSE;
167 sp<Surface> sur(reinterpret_cast<Surface *>(nativeObject))
336 sp<Surface> sur; local
    [all...]
com_google_android_gles_jni_EGLImpl.cpp 167 EGLContext sur = getSurface(_env, surface); local
173 success = eglQuerySurface(dpy, sur, attribute, base);
250 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base); local
252 return (jint)sur;
300 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base); local
303 if (sur != EGL_NO_SURFACE) {
304 _env->SetIntField(out_sur, gSurface_EGLSurfaceFieldID, (int)sur);
334 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base); local
336 return (jint)sur;
363 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base) local
450 EGLSurface sur = getSurface(_env, surface); local
495 EGLSurface sur = getSurface(_env, surface); local
    [all...]
android_opengl_EGLExt.cpp 134 /* 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);
android_view_SurfaceControl.cpp 343 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
344 if (sur != NULL) {
345 bufferProducer = sur->getIGraphicBufferProducer();
  /frameworks/native/opengl/libagl/
TextureObjectManager.cpp 148 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/graphics/java/android/renderscript/
RenderScriptGL.java 210 * @param sur
212 public void setSurface(SurfaceHolder sur, int w, int h) {
215 if (sur != null) {
216 s = sur.getSurface();
229 * @param sur
231 public void setSurfaceTexture(SurfaceTexture sur, int w, int h) {
233 //android.util.Log.v("rs", "set surface " + sur + " w=" + w + ", h=" + h);
237 nContextSetSurfaceTexture(w, h, sur);
RenderScript.java 160 native void rsnContextSetSurface(int con, int w, int h, Surface sur);
161 synchronized void nContextSetSurface(int w, int h, Surface sur) {
163 rsnContextSetSurface(mContext, w, h, sur);
165 native void rsnContextSetSurfaceTexture(int con, int w, int h, SurfaceTexture sur);
166 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
168 rsnContextSetSurfaceTexture(mContext, w, h, sur);
337 native void rsnAllocationSetSurface(int con, int alloc, Surface sur);
338 synchronized void nAllocationSetSurface(int alloc, Surface sur) {
340 rsnAllocationSetSurface(mContext, alloc, sur);
    [all...]
  /frameworks/rs/driver/
rsdGL.h 78 RsNativeWindow sur);
82 uint32_t w, uint32_t h, RsNativeWindow sur);
rsdGL.cpp 426 bool rsdGLSetInternalSurface(const Context *rsc, RsNativeWindow sur) {
447 dc->gl.currentWndSurface = (ANativeWindow *)sur;
468 bool rsdGLSetSurface(const Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) {
478 dc->gl.wndSurface = (ANativeWindow *)sur;
484 return rsdGLSetInternalSurface(rsc, sur);
  /external/webkit/Source/WebKit/android/plugins/
ANPSurfaceInterface.cpp 73 sp<android::Surface> sur = android_view_Surface_getSurface(env, surface); local
78 return sur;
  /hardware/libhardware/include/hardware/
hwcomposer.h 96 * the OpenGL ES target surface is communicated by the (dpy, sur) fields
293 /* (dpy, sur) is the target of SurfaceFlinger's OpenGL ES
299 hwc_surface_t sur; member in struct:hwc_display_contents_1::__anon20699::__anon20700
  /hardware/libhardware/modules/hwcomposer/
hwcomposer.cpp 89 (EGLSurface)displays[0]->sur);
  /frameworks/rs/
rsContext.h 128 void updateSurface(void *sur);
140 void setSurface(uint32_t w, uint32_t h, RsNativeWindow sur);
rsg.spec 111 param RsNativeWindow sur
rsContext.cpp 617 void Context::setSurface(uint32_t w, uint32_t h, RsNativeWindow sur) {
619 mHal.funcs.setSurface(this, w, h, sur);
621 mHasSurface = sur != NULL;
847 void rsi_ContextSetSurface(Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) {
848 rsc->setSurface(w, h, sur);
rsAllocation.cpp 461 void Allocation::setSurface(const Context *rsc, RsNativeWindow sur) {
462 ANativeWindow *nw = (ANativeWindow *)sur;
662 void rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) {
664 alloc->setSurface(rsc, sur);
rsAllocation.h 148 void setSurface(const Context *rsc, RsNativeWindow sur);
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 499 EGLSurface sur; member in class:android::MyThread
504 eglMakeCurrent(dpy, sur, sur, ctx);
516 sur = eglGetCurrentSurface(EGL_DRAW);
521 eglMakeCurrent(dpy, sur, sur, ctx);
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 252 EGLSurface sur = eglGetCurrentSurface(EGL_DRAW); local
253 if (sur != hw->mSurface) {
  /frameworks/base/services/java/com/android/server/wm/
ScreenRotationAnimation.java 228 Surface sur = new Surface(); local
229 sur.copyFrom(mSurfaceControl);
232 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), sur); local
237 sur.destroy();
    [all...]

Completed in 1140 milliseconds

1 2