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

  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_stretch_c.h 28 SDL_Surface *dst, SDL_Rect *dstrect);
SDL_RLEaccel_c.h 28 SDL_Surface *dst, SDL_Rect *dstrect);
30 SDL_Surface *dst, SDL_Rect *dstrect);
SDL_stretch.c 174 SDL_Surface *dst, SDL_Rect *dstrect)
211 if ( dstrect ) {
212 if ( (dstrect->x < 0) || (dstrect->y < 0) ||
213 ((dstrect->x+dstrect->w) > dst->w) ||
214 ((dstrect->y+dstrect->h) > dst->h) ) {
223 dstrect = &full_dst;
250 inc = (srcrect->h << 16) / dstrect->h
    [all...]
SDL_yuv.c 83 int SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect)
89 if ( overlay == NULL || dstrect == NULL ) {
90 SDL_SetError("Passed NULL overlay or dstrect");
99 dstx = dstrect->x;
100 dsty = dstrect->y;
101 dstw = dstrect->w;
102 dsth = dstrect->h;
104 srcw += (dstx * overlay->w) / dstrect->w;
106 srcx -= (dstx * overlay->w) / dstrect->w;
111 srcw -= (extra * overlay->w) / dstrect->w
    [all...]
SDL_surface.c 408 SDL_Surface *dst, SDL_Rect *dstrect)
431 hw_dstrect = *dstrect;
434 dstrect = &hw_dstrect;
440 return(do_blit(src, srcrect, dst, dstrect));
445 SDL_Surface *dst, SDL_Rect *dstrect)
461 if ( dstrect == NULL ) {
463 dstrect = &fulldst;
474 dstrect->x -= srcx;
485 dstrect->y -= srcy;
503 dx = clip->x - dstrect->x
    [all...]
SDL_blit.c 44 SDL_Surface *dst, SDL_Rect *dstrect)
85 (Uint16)dstrect->y*dst->pitch +
86 (Uint16)dstrect->x*dst->format->BytesPerPixel;
87 info.d_width = dstrect->w;
88 info.d_height = dstrect->h;
SDL_RLEaccel.c 840 SDL_Surface *dst, SDL_Rect *dstrect)
856 x = dstrect->x;
857 y = dstrect->y;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxaccel.c 31 SDL_Surface *dst, SDL_Rect *dstrect);
204 SDL_Surface *dst, SDL_Rect *dstrect)
215 SDL_RastPort,dstrect->x+SDL_Window->BorderLeft,dstrect->y+SDL_Window->BorderTop,
228 &temprp,dstrect->x,dstrect->y,
235 BBRP(src->hwdata->bmap,srcrect->x,srcrect->y,SDL_RastPort,dstrect->x+SDL_Window->BorderLeft,dstrect->y+SDL_Window->BorderTop,srcrect->w,srcrect->h,0xc0);
238 BBB(src->hwdata->bmap,srcrect->x,srcrect->y,dst->hwdata->bmap,dstrect->x,dstrect->y,srcrect->w,srcrect->h,0xc0,0xff,NULL)
    [all...]
SDL_cgxvideo.h 170 int CGX_FillHWRect(_THIS,SDL_Surface *dst,SDL_Rect *dstrect,Uint32 color);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.c 94 SDL_Surface *dst, SDL_Rect *dstrect)
125 dstX = dstrect->x;
126 dstY = dstrect->y;
132 srcX += (dstrect->w - 1);
133 dstX += (dstrect->w - 1);
137 srcY += (dstrect->h - 1);
138 dstY += (dstrect->h - 1);
158 tdfx_out32(DSTSIZE, dstrect->w | (dstrect->h << 16));
SDL_fbriva.c 112 SDL_Surface *dst, SDL_Rect *dstrect)
122 return(src->map->sw_blit(src, srcrect, dst, dstrect));
134 dstW = dstrect->w;
135 dstH = dstrect->h;
142 dstX += dstrect->x;
143 dstY += dstrect->y;
SDL_fbmatrox.c 121 SDL_Surface *dst, SDL_Rect *dstrect)
134 return(src->map->sw_blit(src, srcrect, dst, dstrect));
146 w = dstrect->w;
147 h = dstrect->h;
154 dstX += dstrect->x;
155 dstY += dstrect->y;
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5yuv.c 254 RECT srcrect, dstrect; local
261 dstrect.top = SDL_bounds.top+dst->y;
262 dstrect.left = SDL_bounds.left+dst->x;
263 dstrect.bottom = dstrect.top+dst->h;
264 dstrect.right = dstrect.left+dst->w;
267 SDL_primary, &dstrect, DDOVER_SHOW, NULL);
273 result = IDirectDrawSurface3_Blt(SDL_primary, &dstrect, surface, &srcrect,
SDL_dx5video.c 418 static int DX5_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_image_c.h 51 extern int ph_HWAccelBlit(SDL_Surface* src, SDL_Rect *srcrect, SDL_Surface* dst, SDL_Rect* dstrect);
SDL_ph_image.c 836 int ph_HWAccelBlit(SDL_Surface* src, SDL_Rect* srcrect, SDL_Surface* dst, SDL_Rect* dstrect)
854 dstarea.pos.x=dstrect->x;
855 dstarea.pos.y=dstrect->y;
856 dstarea.size.w=dstrect->w;
857 dstarea.size.h=dstrect->h;
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/windows/sdl/host/include/SDL/
SDL_video.h 95 struct SDL_Surface *dst, SDL_Rect *dstrect);
629 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
631 * in 'srcrect' and 'dstrect' after all clipping is performed.
682 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
702 SDL_Surface *dst, SDL_Rect *dstrect);
708 SDL_Surface *dst, SDL_Rect *dstrect);
714 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
720 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
772 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/windows/sdl/include/SDL/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 63 static int DirectFB_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
69 SDL_Surface *dst, SDL_Rect *dstrect);
872 SDL_Surface *dst, SDL_Rect *dstrect)
877 DFBRectangle dr = { dstrect->x, dstrect->y, dstrect->w, dstrect->h };
903 static int DirectFB_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color)
913 surface->FillRectangle (surface, dstrect->x, dstrect->y, dstrect->w, dstrect->h)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/macdsp/
SDL_dspvideo.c 178 SDL_Surface *dst, SDL_Rect *dstrect);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 861 SDL_Surface *dst, SDL_Rect *dstrect)
880 dstx += dstrect->x;
881 dsty += dstrect->y;

Completed in 288 milliseconds