HomeSort by relevance Sort by last modified time
    Searched refs:surface (Results 176 - 200 of 1334) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/gm/
peekpixels.cpp 37 SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
38 if (surface.get()) {
39 SkCanvas* surfCanvas = surface->getCanvas();
61 // test Surface
63 surface->draw(canvas, 0, 0, NULL);
  /frameworks/base/services/core/java/com/android/server/wm/
BlackFrame.java 25 import android.view.Surface.OutOfResourcesException;
37 final SurfaceControl surface; field in class:BlackFrame.BlackSurface
48 surface = new WindowStateAnimator.SurfaceTrace(session, "BlackSurface("
52 surface = new SurfaceControl(session, "BlackSurface",
56 surface.setAlpha(1);
57 surface.setLayerStack(layerStack);
58 surface.setLayer(layer);
59 surface.show();
62 " BLACK " + surface + ": CREATE layer=" + layer);
66 surface.setAlpha(alpha)
    [all...]
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IVideoProvider.aidl 19 import android.view.Surface;
32 void setPreviewSurface(in Surface surface);
34 void setDisplaySurface(in Surface surface);
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsVideoCallProvider.aidl 19 import android.view.Surface;
47 void setPreviewSurface(in Surface surface);
49 void setDisplaySurface(in Surface surface);
  /frameworks/native/opengl/libagl/
dxt.h 29 void *surface, int stride, int format);
  /frameworks/wilhelm/tests/sandbox/
nativewindow.cpp 23 #include <gui/Surface.h>
39 sp<Surface> gSurface;
54 String8("A Surface"),
68 sp<Surface> surface = control->getSurface(); local
69 CHECK(surface != NULL);
71 gSurface = surface;
75 return surface.get();
  /hardware/intel/common/libva/va/glx/
va_backend_glx.h 31 /* Optional: create a surface used for display to OpenGL */
39 /* Optional: destroy a VA/GLX surface */
45 /* Optional: copy a VA surface to a VA/GLX surface */
49 VASurfaceID surface,
  /hardware/intel/common/libva/va/wayland/
va_backend_wayland.h 48 /** \brief Hook to return Wayland buffer associated with the VA surface. */
51 VASurfaceID surface,
va_wayland.h 51 * - Perform normal VA-API operations, e.g. decode to a VA surface ;
52 * - Get wl_buffer associated to the VA surface ;
69 * \brief Returns the Wayland buffer associated with a VA surface.
73 * underlying VA @surface. As such, the VA @surface and Wayland
85 * @param[in] surface the VA surface
87 * @param[out] out_buffer a wl_buffer wrapping the VA @surface
93 VASurfaceID surface,
  /prebuilts/ndk/9/platforms/android-13/arch-arm/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-13/arch-x86/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-15/arch-arm/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /prebuilts/ndk/9/platforms/android-15/arch-x86/usr/include/android/
native_window_jni.h 29 * Return the ANativeWindow associated with a Java Surface object,
34 ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
  /frameworks/native/opengl/tests/linetex/
linetex.cpp 43 EGLSurface surface; local
60 surface = eglCreateWindowSurface(dpy, config, window, NULL);
62 eglMakeCurrent(dpy, surface, surface, context);
63 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
64 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
108 eglSwapBuffers(dpy, surface);
  /external/chromium_org/content/browser/compositor/
buffer_queue.cc 129 void BufferQueue::FreeSurface(AllocatedSurface* surface) {
130 if (surface->texture) {
132 gl->BindTexture(GL_TEXTURE_2D, surface->texture);
133 gl->ReleaseTexImage2DCHROMIUM(GL_TEXTURE_2D, surface->image);
134 gl->DeleteTextures(1, &surface->texture);
135 gl->DestroyImageCHROMIUM(surface->image);
136 surface->image = 0;
137 surface->texture = 0;
144 AllocatedSurface surface = available_surfaces_.back(); local
146 return surface;
    [all...]
  /external/chromium_org/content/common/gpu/
image_transport_surface_android.cc 39 gfx::GLSurface* surface,
63 gfx::GLSurface* surface);
78 gfx::GLSurface* surface,
80 : PassThroughImageTransportSurface(manager, stub, surface),
86 if (!surface())
151 gfx::GLSurface* surface)
152 : PassThroughImageTransportSurface(manager, stub, surface) {}
181 scoped_refptr<gfx::GLSurface> surface = local
183 bool initialize_success = surface->Initialize();
190 new DirectSurfaceAndroid(manager, stub, surface.get()))
    [all...]
  /external/chromium_org/gpu/config/
gpu_info_collector.cc 24 scoped_refptr<gfx::GLSurface> surface(
26 if (!surface.get()) {
31 return surface;
34 scoped_refptr<gfx::GLContext> InitializeGLContext(gfx::GLSurface* surface) {
38 surface,
45 if (!context->MakeCurrent(surface)) {
87 scoped_refptr<gfx::GLSurface> surface(InitializeGLSurface());
88 if (!surface.get()) {
89 LOG(ERROR) << "Could not create surface for info collection.";
93 scoped_refptr<gfx::GLContext> context(InitializeGLContext(surface.get()))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.c 85 /* Hardware surface functions */
86 static int GEM_AllocHWSurface(_THIS, SDL_Surface *surface);
87 static int GEM_LockHWSurface(_THIS, SDL_Surface *surface);
88 static int GEM_FlipHWSurface(_THIS, SDL_Surface *surface);
89 static void GEM_UnlockHWSurface(_THIS, SDL_Surface *surface);
90 static void GEM_FreeHWSurface(_THIS, SDL_Surface *surface);
819 printf("sdl:video:gem: surface: %dx%d\n", current->w, current->h);
829 static int GEM_AllocHWSurface(_THIS, SDL_Surface *surface)
834 static void GEM_FreeHWSurface(_THIS, SDL_Surface *surface)
839 static int GEM_LockHWSurface(_THIS, SDL_Surface *surface)
851 SDL_Surface *surface; local
949 SDL_Surface *surface; local
1051 SDL_Surface *surface; local
1181 SDL_Surface *surface; local
    [all...]
  /cts/tests/tests/textureview/src/android/textureview/cts/
TextureViewSnapshotTestActivity.java 61 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
62 mProducerThread = new GLProducerThread(surface, new GLRendererImpl(),
68 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
72 public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
78 public void onSurfaceTextureUpdated(SurfaceTexture surface) {
  /external/chromium_org/ui/gl/android/
scoped_java_surface.cc 30 const base::android::JavaRef<jobject>& surface)
35 DCHECK(env->IsInstanceOf(surface.obj(), Surface_clazz(env)));
36 j_surface_.Reset(surface);
79 ScopedJavaSurface ScopedJavaSurface::AcquireExternalSurface(jobject surface) {
82 surface_ref.Reset(env, surface);

Completed in 671 milliseconds

1 2 3 4 5 6 78 91011>>