HomeSort by relevance Sort by last modified time
    Searched refs:surface (Results 126 - 150 of 917) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gbm/main/
gbmint.h 77 struct gbm_bo *(*surface_lock_front_buffer)(struct gbm_surface *surface);
78 void (*surface_release_buffer)(struct gbm_surface *surface,
80 int (*surface_has_free_buffers)(struct gbm_surface *surface);
81 void (*surface_destroy)(struct gbm_surface *surface);
  /external/icu4c/samples/layout/
GDIFontMap.h 27 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
rsurface.h 16 void rs_drawGlyphs(rs_surface *surface, const le_font *font, const LEGlyphID *glyphs, le_int32 count,
  /external/mesa3d/src/egl/wayland/wayland-egl/
wayland-egl-priv.h 18 struct wl_surface *surface; member in struct:wl_egl_window
  /external/mesa3d/src/gallium/state_trackers/xvmc/
Makefile 9 surface.c \
  /external/mesa3d/src/gbm/main/
gbmint.h 77 struct gbm_bo *(*surface_lock_front_buffer)(struct gbm_surface *surface);
78 void (*surface_release_buffer)(struct gbm_surface *surface,
80 int (*surface_has_free_buffers)(struct gbm_surface *surface);
81 void (*surface_destroy)(struct gbm_surface *surface);
  /frameworks/base/services/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/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();
  /frameworks/native/opengl/tests/linetex/
linetex.cpp 45 EGLSurface surface; local
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
63 eglMakeCurrent(dpy, surface, surface, context);
64 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
65 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
109 eglSwapBuffers(dpy, surface);
  /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)) {
90 scoped_refptr<gfx::GLSurface> surface(InitializeGLSurface());
91 if (!surface.get())
94 scoped_refptr<gfx::GLContext> context(InitializeGLContext(surface.get()));
121 context->ReleaseCurrent(surface.get())
    [all...]
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java 126 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
127 android.util.Log.v("cpa", "onSurfaceTextureAvailable " + surface);
128 mSurface = surface;
133 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
134 android.util.Log.v("cpa", "onSurfaceTextureSizeChanged " + surface);
135 mSurface = surface;
140 public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
141 android.util.Log.v("cpa", "onSurfaceTextureDestroyed " + surface);
142 mSurface = surface;
148 public void onSurfaceTextureUpdated(SurfaceTexture surface) {
    [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(), g_Surface_clazz));
36 j_surface_.Reset(surface);
79 ScopedJavaSurface ScopedJavaSurface::AcquireExternalSurface(jobject surface) {
82 surface_ref.Reset(env, surface);
  /external/chromium_org/ui/gl/
gl_context_android.cc 21 // Used to render into an already current context+surface,
33 virtual bool MakeCurrent(GLSurface* surface) OVERRIDE;
34 virtual void ReleaseCurrent(GLSurface* surface) OVERRIDE {}
35 virtual bool IsCurrent(GLSurface* surface) OVERRIDE { return true; }
50 bool GLNonOwnedContext::MakeCurrent(GLSurface* surface) {
51 SetCurrent(surface);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GetBitmapActivity.java 81 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
85 mCamera.setPreviewTexture(surface);
94 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
99 public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
106 public void onSurfaceTextureUpdated(SurfaceTexture surface) {
CanvasTextureViewActivity.java 50 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
56 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
61 public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
67 public void onSurfaceTextureUpdated(SurfaceTexture surface) {
75 public RenderingThread(TextureView surface) {
76 mSurface = surface;
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_image.c 522 int ph_AllocHWSurface(_THIS, SDL_Surface* surface)
526 if (surface->hwdata!=NULL)
531 surface->hwdata=SDL_malloc(sizeof(struct private_hwdata));
532 SDL_memset(surface->hwdata, 0x00, sizeof(struct private_hwdata));
533 surface->hwdata->offscreenctx=PdCreateOffscreenContext(0, surface->w, surface->h, Pg_OSC_MEM_PAGE_ALIGN);
534 if (surface->hwdata->offscreenctx == NULL)
539 surface->pixels=PdGetOffscreenContextPtr(surface->hwdata->offscreenctx)
    [all...]
  /frameworks/native/opengl/tests/fillrate/
fillrate.cpp 44 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);
124 eglSwapBuffers(dpy, surface);
134 eglSwapBuffers(dpy, surface);
146 eglSwapBuffers(dpy, surface);
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzWindow.m 35 SDL_Surface *surface = current_video->screen;
36 int bpp = surface->format->BitsPerPixel;
37 Uint32 amask = surface->format->Amask;
41 Uint32 *pixels = (Uint32*) surface->pixels;
42 Uint32 rowPixels = surface->pitch / 4;
45 for (i = 0; i < surface->h; i++)
46 for (j = 0; j < surface->w; j++) {
82 We'll save the current visible surface, let the window manager redraw any
83 UI elements, and restore the SDL surface. This way, no expose event
92 /* save current visible SDL surface */
    [all...]
  /frameworks/native/opengl/tests/finish/
finish.cpp 45 EGLSurface surface; local
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
63 eglMakeCurrent(dpy, surface, surface, context);
64 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
65 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
113 eglSwapBuffers(dpy, surface);
127 eglSwapBuffers(dpy, surface);
142 eglSwapBuffers(dpy, surface);
157 eglSwapBuffers(dpy, surface);
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 12 EGLBoolean eglDestroySurface ( EGLDisplay dpy, EGLSurface surface )
13 EGLBoolean eglQuerySurface ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value )
19 EGLBoolean eglSurfaceAttrib ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value )
20 EGLBoolean eglBindTexImage ( EGLDisplay dpy, EGLSurface surface, EGLint buffer )
21 EGLBoolean eglReleaseTexImage ( EGLDisplay dpy, EGLSurface surface, EGLint buffer )
32 EGLBoolean eglSwapBuffers ( EGLDisplay dpy, EGLSurface surface )
33 EGLBoolean eglCopyBuffers ( EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target )
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl.cpp 119 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
121 return getDispatch()->eglDestroySurface(dpy, surface);
124 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value)
126 return getDispatch()->eglQuerySurface(dpy, surface, attribute, value);
154 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
156 return getDispatch()->eglSurfaceAttrib(dpy, surface, attribute, value);
159 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
161 return getDispatch()->eglBindTexImage(dpy, surface, buffer);
164 EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
166 return getDispatch()->eglReleaseTexImage(dpy, surface, buffer)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
SDL_dspvideo.c 97 I can't create a hardware surface the same size as the screen?! How to fix?
167 /* Hardware surface functions */
168 static int DSp_SetHWAlpha(_THIS, SDL_Surface *surface, UInt8 alpha);
169 static int DSp_SetHWColorKey(_THIS, SDL_Surface *surface, Uint32 key);
171 static int DSp_AllocHWSurface(_THIS, SDL_Surface *surface);
172 static int DSp_LockHWSurface(_THIS, SDL_Surface *surface);
173 static void DSp_UnlockHWSurface(_THIS, SDL_Surface *surface);
174 static void DSp_FreeHWSurface(_THIS, SDL_Surface *surface);
175 static int DSp_FlipHWSurface(_THIS, SDL_Surface *surface);
655 fmt = "Hardware surface possible but not enough %s available"
    [all...]

Completed in 1107 milliseconds

1 2 3 4 56 7 8 91011>>