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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/gtk/
GdkCairoUtilities.cpp 33 GdkPixbuf* cairoImageSurfaceToGdkPixbuf(cairo_surface_t* surface)
35 return gdk_pixbuf_get_from_surface(surface, 0, 0,
36 cairo_image_surface_get_width(surface),
37 cairo_image_surface_get_height(surface));
GdkCairoUtilities.h 29 GdkPixbuf* cairoImageSurfaceToGdkPixbuf(cairo_surface_t* surface);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11image_c.h 30 extern int X11_AllocHWSurface(_THIS, SDL_Surface *surface);
31 extern void X11_FreeHWSurface(_THIS, SDL_Surface *surface);
32 extern int X11_LockHWSurface(_THIS, SDL_Surface *surface);
33 extern void X11_UnlockHWSurface(_THIS, SDL_Surface *surface);
34 extern int X11_FlipHWSurface(_THIS, SDL_Surface *surface);
  /external/webkit/Source/WebKit/android/plugins/
ANPSurface_npapi.h 33 /** Locks the surface from manipulation by other threads and provides a bitmap
36 surface will be considered dirty. If the lock was successful the function
40 bool (*lock)(JNIEnv* env, jobject surface, ANPBitmap* bitmap, ANPRectI* dirtyRect);
41 /** Given a locked surface handle (i.e. result of a successful call to lock)
42 the surface is unlocked and the contents of the bitmap, specifically
45 void (*unlock)(JNIEnv* env, jobject surface);
  /external/harfbuzz_ng/util/
helper-cairo-ansi.cc 34 helper_cairo_surface_write_to_ansi_stream (cairo_surface_t *surface,
38 unsigned int width = cairo_image_surface_get_width (surface);
39 unsigned int height = cairo_image_surface_get_height (surface);
40 if (cairo_image_surface_get_format (surface) != CAIRO_FORMAT_RGB24) {
43 if (cairo_image_surface_get_format (surface) == CAIRO_FORMAT_A8) {
47 cairo_mask_surface (cr, surface, 0, 0);
51 cairo_set_source_surface (cr, surface, 0, 0);
55 surface = new_surface;
57 cairo_surface_reference (surface);
59 unsigned int stride = cairo_image_surface_get_stride (surface);
    [all...]
helper-cairo-ansi.hh 34 helper_cairo_surface_write_to_ansi_stream (cairo_surface_t *surface,
  /external/skia/src/gpu/
GrClipData.cpp 21 void GrClipData::getConservativeBounds(const GrSurface* surface,
28 surface->width(),
29 surface->height(),
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PatternCairo.cpp 38 cairo_surface_t* surface = tileImage()->nativeImageForCurrentFrame(); local
39 if (!surface)
42 cairo_pattern_t* pattern = cairo_pattern_create_for_surface(surface);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_surface.c 35 * Create an empty RGB surface of the appropriate depth
44 SDL_Surface *surface; local
53 /* Check to see if we desire the surface in video memory */
77 /* Allocate the surface */
78 surface = (SDL_Surface *)SDL_malloc(sizeof(*surface));
79 if ( surface == NULL ) {
83 surface->flags = SDL_SWSURFACE;
102 surface->format = SDL_AllocFormat(depth, Rmask, Gmask, Bmask, Amask);
103 if ( surface->format == NULL )
158 SDL_Surface *surface; local
    [all...]
SDL_blit.c 232 /* Figure out which of many blit routines to set up on a surface */
233 int SDL_CalculateBlit(SDL_Surface *surface)
238 if ( (surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL ) {
239 SDL_UnRLESurface(surface, 1);
241 surface->map->sw_blit = NULL;
244 surface->flags &= ~SDL_HWACCEL;
245 if ( surface->map->identity ) {
248 if ( (surface->flags & SDL_HWSURFACE) == SDL_HWSURFACE ) {
250 if ( surface->map->dst->flags & SDL_HWSURFACE ) {
255 if (hw_blit_ok && (surface->flags & SDL_SRCCOLORKEY))
    [all...]
SDL_RLEaccel_c.h 26 extern int SDL_RLESurface(SDL_Surface *surface);
31 extern void SDL_UnRLESurface(SDL_Surface *surface, int recode);
SDL_bmp.c 54 SDL_Surface *surface; local
85 surface = NULL;
223 /* Create a compatible surface, note that the colors are RGB ordered */
224 surface = SDL_CreateRGBSurface(SDL_SWSURFACE,
226 if ( surface == NULL ) {
232 palette = (surface->format)->palette;
255 /* Read the surface pixels. Note that the bmp image is upside down */
261 top = (Uint8 *)surface->pixels;
262 end = (Uint8 *)surface->pixels+(surface->h*surface->pitch)
364 SDL_Surface *surface; local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_util.cpp 31 * @param surface cairo representation of an image
34 Evas_Object* ewk_util_image_from_cairo_surface_add(Evas* canvas, cairo_surface_t* surface)
45 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, 0);
47 status = cairo_surface_status(surface);
49 ERR("cairo surface is invalid: %s", cairo_status_to_string(status));
53 type = cairo_surface_get_type(surface);
55 ERR("unknown surface type %d, required %d (CAIRO_SURFACE_TYPE_IMAGE).",
60 format = cairo_image_surface_get_format(surface);
62 ERR("unknown surface format %d, expected %d or %d.",
67 w = cairo_image_surface_get_width(surface);
    [all...]
ewk_util.h 32 Evas_Object* ewk_util_image_from_cairo_surface_add(Evas* canvas, cairo_surface_t* surface);
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_image_c.h 42 extern int ph_AllocHWSurface(_THIS, SDL_Surface* surface);
43 extern void ph_FreeHWSurface(_THIS, SDL_Surface* surface);
45 extern int ph_FillHWRect(_THIS, SDL_Surface* surface, SDL_Rect* rect, Uint32 color);
46 extern int ph_LockHWSurface(_THIS, SDL_Surface* surface);
47 extern void ph_UnlockHWSurface(_THIS, SDL_Surface* surface);
48 extern int ph_FlipHWSurface(_THIS, SDL_Surface* surface);
49 extern int ph_SetHWColorKey(_THIS, SDL_Surface* surface, Uint32 key);
50 extern int ph_SetHWAlpha(_THIS, SDL_Surface* surface, Uint8 alpha);
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_atarigl.c 54 static void CopyShadowNull(_THIS, SDL_Surface *surface);
55 static void CopyShadowDirect(_THIS, SDL_Surface *surface);
56 static void CopyShadowRGBTo555(_THIS, SDL_Surface *surface);
57 static void CopyShadowRGBTo565(_THIS, SDL_Surface *surface);
58 static void CopyShadowRGBSwap(_THIS, SDL_Surface *surface);
59 static void CopyShadowRGBToARGB(_THIS, SDL_Surface *surface);
60 static void CopyShadowRGBToABGR(_THIS, SDL_Surface *surface);
61 static void CopyShadowRGBToBGRA(_THIS, SDL_Surface *surface);
62 static void CopyShadowRGBToRGBA(_THIS, SDL_Surface *surface);
63 static void CopyShadow8888To555(_THIS, SDL_Surface *surface);
257 SDL_Surface *surface; local
312 SDL_Surface *surface; local
    [all...]
  /packages/screensavers/Basic/src/com/android/dreams/basic/
Colors.java 76 public void onSurfaceTextureAvailable(final SurfaceTexture surface,
78 LOG("onSurfaceTextureAvailable(%s, %d, %d)", surface, width, height);
86 mRenderer = new ColorsGLRenderer(surface, width, height);
93 public void onSurfaceTextureSizeChanged(SurfaceTexture surface,
95 LOG("onSurfaceTextureSizeChanged(%s, %d, %d)", surface, width, height);
108 public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
109 LOG("onSurfaceTextureDestroyed(%s)", surface);
132 public void onSurfaceTextureUpdated(SurfaceTexture surface) {
133 LOG("onSurfaceTextureUpdated(%s)", surface);
  /bootable/recovery/minui/
resources.c 48 GGLSurface* surface = NULL; local
113 surface = malloc(sizeof(GGLSurface) + pixelSize);
114 if (surface == NULL) {
118 unsigned char* pData = (unsigned char*) (surface + 1);
119 surface->version = sizeof(GGLSurface);
120 surface->width = width;
121 surface->height = height;
122 surface->stride = width; /* Yes, pixels, not bytes */
123 surface->data = pData;
124 surface->format = (channels == 3) ? GGL_PIXEL_FORMAT_RGBX_8888
201 GGLSurface* surface = NULL; local
    [all...]
  /external/icu4c/samples/layout/
gdiglue.h 27 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc);
28 void rs_gdiRenderingSurfaceClose(rs_surface *surface);
30 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
  /frameworks/native/opengl/libagl/
TextureObjectManager.cpp 34 if (mSize && surface.data)
35 free(surface.data);
43 memset(&surface, 0, sizeof(surface));
44 surface.version = sizeof(surface);
74 if (!surface.data)
77 int w = surface.width;
78 int h = surface.height;
109 return surface;
    [all...]
  /development/ndk/platforms/android-9/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/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/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 25 Surface sur = null;
32 } else if (win instanceof Surface) {
33 sur = (Surface) win;
36 EGLSurface surface; local
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
40 surface = _eglCreateWindowSurfaceTexture(dpy, config,
45 "Surface, SurfaceView, SurfaceTexture or SurfaceHolder at the moment, " +
49 return surface;
  /prebuilts/ndk/5/platforms/android-9/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/6/platforms/android-9/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);

Completed in 1360 milliseconds

1 2 3 4 5 6 7 8 91011>>