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

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
IProjectionService.aidl 20 import android.view.Surface;
25 void startRendering(in Surface surface, int width, int height, int density, int viewType);
  /external/chromium_org/content/browser/compositor/
onscreen_display_client.h 34 void set_surface_output_surface(SurfaceDisplayOutputSurface* surface) {
35 surface_display_output_surface_ = surface;
  /external/chromium_org/skia/ext/
bitmap_platform_device_cairo.h 48 // This is the Linux bitmap backing for Skia. We create a Cairo image surface
53 // accessor for getting the surface.
92 virtual void DrawToNativeContext(PlatformSurface surface, int x, int y,
101 cairo_surface_t* surface);
111 // Graphics context used to draw into the surface.
  /external/chromium_org/third_party/angle/src/libEGL/
main.h 35 void setCurrentDrawSurface(EGLSurface surface);
38 void setCurrentReadSurface(EGLSurface surface);
  /external/chromium_org/third_party/icu/source/samples/layout/
gnomeglue.cpp 45 void rs_gnomeRenderingSurfaceClose(rs_surface *surface)
47 GnomeSurface *rs = (GnomeSurface *) surface;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_objects.c 76 struct pipe_surface *surface)
80 if(!surface)
83 assert(surface->texture == glhd_resource->resource);
89 memcpy(&glhd_surface->base, surface, sizeof(struct pipe_surface));
94 glhd_surface->surface = surface;
99 pipe_surface_reference(&surface, NULL);
108 pipe_surface_reference(&glhd_surface->surface, NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
id_objects.c 76 struct pipe_surface *surface)
80 if(!surface)
83 assert(surface->texture == id_resource->resource);
89 memcpy(&id_surface->base, surface, sizeof(struct pipe_surface));
94 id_surface->surface = surface;
99 pipe_surface_reference(&surface, NULL);
109 id_surface->surface);
  /external/chromium_org/third_party/skia/bench/
DeferredSurfaceCopyBench.cpp 40 SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
41 SkAutoTUnref<SkDeferredCanvas> drawingCanvas(SkDeferredCanvas::Create(surface));
  /external/deqp/framework/egl/
egluUnique.cpp 31 UniqueSurface::UniqueSurface (EGLDisplay display, EGLSurface surface)
33 , m_surface (surface)
  /external/deqp/modules/egl/
teglColorClearCase.hpp 43 virtual void executeForContexts (tcu::egl::Display& display, tcu::egl::Surface& surface, EGLConfig config, const std::vector<std::pair<EGLint, tcu::egl::Context*> >& contexts);
52 virtual void executeForContexts (tcu::egl::Display& display, tcu::egl::Surface& surface, EGLConfig config, const std::vector<std::pair<EGLint, tcu::egl::Context*> >& contexts);
  /external/icu/icu4c/source/samples/layout/
gnomeglue.cpp 45 void rs_gnomeRenderingSurfaceClose(rs_surface *surface)
47 GnomeSurface *rs = (GnomeSurface *) surface;
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_objects.c 76 struct pipe_surface *surface)
80 if(!surface)
83 assert(surface->texture == glhd_resource->resource);
89 memcpy(&glhd_surface->base, surface, sizeof(struct pipe_surface));
94 glhd_surface->surface = surface;
99 pipe_surface_reference(&surface, NULL);
108 pipe_surface_reference(&glhd_surface->surface, NULL);
  /external/mesa3d/src/gallium/drivers/identity/
id_objects.c 76 struct pipe_surface *surface)
80 if(!surface)
83 assert(surface->texture == id_resource->resource);
89 memcpy(&id_surface->base, surface, sizeof(struct pipe_surface));
94 id_surface->surface = surface;
99 pipe_surface_reference(&surface, NULL);
109 id_surface->surface);
  /external/qemu/distrib/sdl-1.2.15/src/video/dummy/
SDL_nullvideo.c 58 /* Hardware surface functions */
59 static int DUMMY_AllocHWSurface(_THIS, SDL_Surface *surface);
60 static int DUMMY_LockHWSurface(_THIS, SDL_Surface *surface);
61 static void DUMMY_UnlockHWSurface(_THIS, SDL_Surface *surface);
62 static void DUMMY_FreeHWSurface(_THIS, SDL_Surface *surface);
198 static int DUMMY_AllocHWSurface(_THIS, SDL_Surface *surface)
202 static void DUMMY_FreeHWSurface(_THIS, SDL_Surface *surface)
208 static int DUMMY_LockHWSurface(_THIS, SDL_Surface *surface)
213 static void DUMMY_UnlockHWSurface(_THIS, SDL_Surface *surface)
  /frameworks/base/media/java/android/media/tv/
ITvInputHardware.aidl 21 import android.view.Surface;
32 * Make the input render on the surface according to the config. In case of HDMI, this will
35 boolean setSurface(in Surface surface, in TvStreamConfig config);
  /frameworks/native/opengl/tests/angeles/
app-linux.cpp 84 case EGL_BAD_CURRENT_SURFACE: return "BAD CURRENT SURFACE";
134 EGLSurface surface; local
150 surface = eglCreateWindowSurface(dpy, config, window, NULL);
153 fprintf(stderr,"surface = %p\n", surface);
159 eglMakeCurrent(dpy, surface, surface, context);
162 eglQuerySurface(dpy, surface, EGL_WIDTH, &sWindowWidth);
163 eglQuerySurface(dpy, surface, EGL_HEIGHT, &sWindowHeight);
166 sEglSurface = surface;
    [all...]
  /hardware/intel/common/libva/va/
va_tpi.h 36 * the surface with the input attribute
64 unsigned int count; /* buffer count for surface creation */
74 VASurfaceID surface,
92 VASurfaceID surface,
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.h 40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
44 m_eglSurface(surface)
  /cts/tests/tests/media/src/android/media/cts/
VideoSurfaceView.java 32 import android.view.Surface;
118 Surface surface = new Surface(mSurfaceTexture); local
119 mMediaPlayer.setSurface(surface);
120 surface.release();
133 synchronized public void onFrameAvailable(SurfaceTexture surface) {
  /external/chromium_org/cc/output/
overlay_processor.h 32 OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider);
  /external/chromium_org/content/plugin/
webplugin_accelerated_surface_proxy_mac.h 38 AcceleratedSurface* surface);
  /external/chromium_org/mojo/examples/surfaces_app/
embedder.h 23 // Simple example of a surface embedder that embeds two other surfaces.
26 explicit Embedder(Surface* surface);
38 Surface* surface_;
  /external/chromium_org/third_party/libva/va/glx/
va_glx.h 46 * Create a surface used for display to OpenGL
55 * @param[out] gl_surface the VA/GLX surface
66 * Destroy a VA/GLX surface
73 * @param[in] gl_surface the VA surface
82 * Copy a VA surface to a VA/GLX surface
85 * point, the underlying GL texture will contain the surface pixels
93 * @param[in] gl_surface the VA/GLX destination surface
94 * @param[in] surface the VA source surface
    [all...]
  /external/chromium_org/third_party/libva/va/
va_android.h 57 * to get the decode output surface to an ISurface object.
64 VASurfaceID surface,
65 sp<ISurface> draw, /* Android Window/Surface */
va_x11.h 44 * to get the decode output surface to a X drawable
51 VASurfaceID surface,

Completed in 1137 milliseconds

1 2 3 4 5 6 7 8 91011>>