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

1 2 3 4 5

  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_phyuv.c 73 SDL_Overlay* overlay; local
81 /* Create the overlay structure */
82 overlay = SDL_calloc(1, sizeof(SDL_Overlay));
84 if (overlay == NULL)
91 overlay->format = format;
92 overlay->w = width;
93 overlay->h = height;
94 overlay->hwdata = NULL;
97 overlay->hwfuncs = &ph_yuvfuncs;
105 SDL_FreeYUVOverlay(overlay);
    [all...]
SDL_phyuv_c.h 57 extern int ph_LockYUVOverlay(_THIS, SDL_Overlay* overlay);
58 extern void ph_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay);
59 extern int ph_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect* dst);
60 extern void ph_FreeYUVOverlay(_THIS, SDL_Overlay* overlay);
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuvfuncs.h 33 int (*Lock)(_THIS, SDL_Overlay *overlay);
34 void (*Unlock)(_THIS, SDL_Overlay *overlay);
35 int (*Display)(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
36 void (*FreeHW)(_THIS, SDL_Overlay *overlay);
SDL_yuv.c 38 SDL_Overlay *overlay; local
53 overlay = NULL;
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
59 /* If hardware YUV overlay failed ... */
60 if ( overlay == NULL ) {
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
63 return overlay;
66 int SDL_LockYUVOverlay(SDL_Overlay *overlay)
68 if ( overlay == NULL ) {
69 SDL_SetError("Passed NULL overlay");
    [all...]
SDL_yuv_sw_c.h 27 /* This is the software implementation of the YUV video overlay support */
31 extern int SDL_LockYUV_SW(_THIS, SDL_Overlay *overlay);
33 extern void SDL_UnlockYUV_SW(_THIS, SDL_Overlay *overlay);
35 extern int SDL_DisplayYUV_SW(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
37 extern void SDL_FreeYUV_SW(_THIS, SDL_Overlay *overlay);
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysyuv.cc 130 SDL_Overlay* overlay; local
156 /* Create the overlay structure */
157 overlay = (SDL_Overlay*)SDL_calloc(1, sizeof(SDL_Overlay));
159 if (overlay == NULL)
166 overlay->format = format;
167 overlay->w = width;
168 overlay->h = height;
169 overlay->hwdata = NULL;
172 overlay->hwfuncs = &be_yuvfuncs;
180 SDL_FreeYUVOverlay(overlay);
    [all...]
SDL_sysyuv.h 66 extern int BE_LockYUVOverlay(_THIS, SDL_Overlay* overlay);
67 extern void BE_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay);
68 extern int BE_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect* dst);
69 extern void BE_FreeYUVOverlay(_THIS, SDL_Overlay* overlay);
SDL_lowvideo.h 48 SDL_Overlay *overlay; member in struct:SDL_PrivateVideoData
56 #define current_overlay (_this->hidden->overlay)
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_yuv.h 31 extern int DirectFB_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
33 extern void DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
35 extern int DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
37 extern void DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
SDL_DirectFB_yuv.c 153 SDL_Overlay *overlay; local
156 /* Create the overlay structure */
157 overlay = SDL_calloc (1, sizeof(SDL_Overlay));
158 if (!overlay)
165 overlay->format = format;
166 overlay->w = width;
167 overlay->h = height;
170 overlay->hwfuncs = &directfb_yuvfuncs;
174 overlay->hwdata = hwdata;
178 SDL_FreeYUVOverlay (overlay);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsyuv_c.h 31 extern int GS_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
33 extern void GS_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
35 extern int GS_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
37 extern void GS_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
SDL_gsyuv.c 77 SDL_Overlay *overlay; local
91 SDL_SetError("Overlay width/height must be multiples of 16");
96 SDL_SetError("Overlay too large (maximum size: %d pixels)",
114 /* Create the overlay structure */
115 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
116 if ( overlay == NULL ) {
120 SDL_memset(overlay, 0, (sizeof *overlay));
123 overlay->format = format
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5yuv_c.h 32 extern int DX5_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
34 extern void DX5_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
36 extern int DX5_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
38 extern void DX5_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
SDL_dx5yuv.c 124 SDL_Overlay *overlay; local
148 /* Create the overlay structure */
149 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
150 if ( overlay == NULL ) {
154 SDL_memset(overlay, 0, (sizeof *overlay));
157 overlay->format = format;
158 overlay->w = width;
159 overlay->h = height
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11yuv_c.h 33 extern int X11_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
35 extern void X11_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
37 extern int X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
39 extern void X11_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
SDL_x11yuv.c 95 SDL_Overlay *overlay; local
197 /* Enable auto-painting of the overlay colorkey */
221 /* Create the overlay structure */
222 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
223 if ( overlay == NULL ) {
228 SDL_memset(overlay, 0, (sizeof *overlay));
231 overlay->format = format;
232 overlay->w = width
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
overlay.css 6 .overlay-root {
21 .overlay-root:not([visible]),
22 .overlay:not([visible])
27 .overlay-root > .content-host {
35 .overlay-root > .content-host > * {
profiling_view.css 27 .profiling-overlay {
33 .profiling-overlay .raw-text {
39 .profiling-overlay .error {
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_ImgConv.c 101 if(pComponentPrivate->overlay){
102 if(pComponentPrivate->overlay->iOvlyConvBufPtr){
103 OMX_FREE(pComponentPrivate->overlay->iOvlyConvBufPtr);
104 pComponentPrivate->overlay->iOvlyConvBufPtr = NULL;
106 OMX_FREE(pComponentPrivate->overlay);
107 pComponentPrivate->overlay=NULL;
110 OMX_MALLOC(pComponentPrivate->overlay, sizeof(VPP_OVERLAY));
111 pComponentPrivate->overlay->iRBuff = NULL ;
112 pComponentPrivate->overlay->iGBuff = NULL;
113 pComponentPrivate->overlay->iBBuff = NULL;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicPagedViewIcon.java 43 Bitmap overlay = mOriginalIcon.getHolographicOutline(); local
44 if (overlay != null) {
49 canvas.drawBitmap(overlay,
50 offset + compoundPaddingLeft + (hspace - overlay.getWidth()) / 2,
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
CreateGestureActivity.java 46 GestureOverlayView overlay = (GestureOverlayView) findViewById(R.id.gestures_overlay); local
47 overlay.addOnGestureListener(new GesturesProcessor());
65 final GestureOverlayView overlay = local
67 overlay.post(new Runnable() {
69 overlay.setGesture(mGesture);
111 public void onGestureStarted(GestureOverlayView overlay, MotionEvent event) {
116 public void onGesture(GestureOverlayView overlay, MotionEvent event) {
119 public void onGestureEnded(GestureOverlayView overlay, MotionEvent event) {
120 mGesture = overlay.getGesture();
122 overlay.clear(false)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzYUV.m 40 static int QZ_LockYUV (_THIS, SDL_Overlay *overlay) {
45 static void QZ_UnlockYUV (_THIS, SDL_Overlay *overlay) {
50 static int QZ_DisplayYUV (_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) {
65 scale_x = FixDiv ( Long2Fix (dst->w), Long2Fix (overlay->w) );
66 scale_y = FixDiv ( Long2Fix (dst->h), Long2Fix (overlay->h) );
89 static void QZ_FreeHWYUV (_THIS, SDL_Overlay *overlay) {
94 SDL_free (overlay->hwfuncs);
95 SDL_free (overlay->pitches);
96 SDL_free (overlay->pixels);
119 SDL_Overlay *overlay;
    [all...]
  /frameworks/base/core/tests/overlaytests/OverlayTestOverlay/
Android.mk 10 LOCAL_PACKAGE_NAME := com.android.overlaytest.overlay
  /frameworks/base/media/java/android/media/videoeditor/
MediaItem.java 91 private final List<Overlay> mOverlays;
147 mOverlays = new ArrayList<Overlay>();
200 for (Overlay overlay : mOverlays) {
201 ((OverlayFrame)overlay).invalidateGeneratedFiles();
405 * Add an overlay to the storyboard. This method invalidates a transition
406 * video clip if the overlay overlaps with a transition.
408 * @param overlay The overlay to add
410 * if the overlay id is not unique across all the overlays adde
    [all...]
  /frameworks/base/core/tests/overlaytests/
runtests.sh 43 echo "Disabling overlay"
44 $adb shell rm /vendor/overlay/framework/framework-res.apk
45 $adb shell rm /data/resource-cache/vendor@overlay@framework@framework-res.apk@idmap
50 echo "Enabling overlay"
51 $adb shell ln -s /data/app/com.android.overlaytest.overlay.apk /vendor/overlay/framework/framework-res.apk
74 # instrument test (without overlay)
81 # instrument test (with overlay)

Completed in 253 milliseconds

1 2 3 4 5