HomeSort by relevance Sort by last modified time
    Searched refs:SkinSurface (Results 1 - 2 of 2) sorted by null

  /external/qemu/android/skin/
surface.h 18 /* a SkinSurface models a 32-bit ARGB pixel image that can be blitted to or from
20 typedef struct SkinSurface SkinSurface;
23 extern SkinSurface* skin_surface_ref( SkinSurface* surface );
27 extern void skin_surface_unrefp( SkinSurface* *psurface );
34 extern void skin_surface_set_done( SkinSurface* s, SkinSurfaceDoneFunc done_func, void* done_user );
49 extern SkinSurface* skin_surface_create_fast( int w, int h );
52 extern SkinSurface* skin_surface_create_slow( int w, int h );
58 extern SkinSurface* skin_surface_create_argb32_from
    [all...]
surface.c 25 struct SkinSurface {
34 skin_surface_free( SkinSurface* s )
47 extern SkinSurface*
48 skin_surface_ref( SkinSurface* surface )
56 skin_surface_unrefp( SkinSurface* *psurface )
58 SkinSurface* surf = *psurface;
68 skin_surface_set_done( SkinSurface* s, SkinSurfaceDoneFunc done_func, void* done_user )
135 static SkinSurface*
139 SkinSurface* s = malloc(sizeof(*s));
156 SkinSurface*
    [all...]

Completed in 184 milliseconds