Searched defs:dstrect (Results 1 - 16 of 16) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv.c83 int SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect) argument
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
[all...]
H A DSDL_blit.c44 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;
43 SDL_SoftBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
H A DSDL_stretch.c203 SDL_Surface *dst, SDL_Rect *dstrect)
242 if ( dstrect ) {
243 if ( (dstrect->x < 0) || (dstrect->y < 0) ||
244 ((dstrect->x+dstrect->w) > dst->w) ||
245 ((dstrect->y+dstrect->h) > dst->h) ) {
254 dstrect = &full_dst;
281 inc = (srcrect->h << 16) / dstrect
202 SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
[all...]
H A DSDL_surface.c408 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
407 SDL_LowerBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
444 SDL_UpperBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
536 SDL_FillRect1(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color) argument
543 SDL_FillRect4(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color) argument
553 SDL_FillRect(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color) argument
[all...]
H A DSDL_RLEaccel.c841 SDL_Surface *dst, SDL_Rect *dstrect)
857 x = dstrect->x;
858 y = dstrect->y;
1108 SDL_Surface *dst, SDL_Rect *dstrect)
1122 x = dstrect->x;
1123 y = dstrect->y;
840 SDL_RLEBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
1107 SDL_RLEAlphaBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbriva.c112 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;
111 HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
H A DSDL_fb3dfx.c94 SDL_Surface *dst, SDL_Rect *dstrect)
123 dstX = dstrect->x;
124 dstY = dstrect->y;
130 srcX += (dstrect->w - 1);
131 dstX += (dstrect->w - 1);
135 srcY += (dstrect->h - 1);
136 dstY += (dstrect->h - 1);
156 tdfx_out32(DSTSIZE, dstrect->w | (dstrect->h << 16));
93 HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
H A DSDL_fbmatrox.c121 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;
120 HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c254 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,
H A DSDL_dx5video.c434 static int DX5_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
1903 SDL_Surface *dst, SDL_Rect *dstrect)
1929 dstrect->x, dstrect->y, src_surface, &rect, flags);
1940 fprintf(stderr, "Original dest rect: %dx%d at %d,%d\n", dstrect->w, dstrect->h, dstrect->x, dstrect->y);
1943 dstrect->x, dstrect
1902 DX5_HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
1996 DX5_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/nds/
H A DSDL_ndsvideo.c85 SDL_Surface *dst, SDL_Rect *dstrect)
84 HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_image.c836 int ph_HWAccelBlit(SDL_Surface* src, SDL_Rect* srcrect, SDL_Surface* dst, SDL_Rect* dstrect) argument
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.15/src/video/dga/
H A DSDL_dgavideo.c865 SDL_Surface *dst, SDL_Rect *dstrect)
884 dstx += dstrect->x;
885 dsty += dstrect->y;
864 HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_video.c63 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) argument
913 surface->FillRectangle (surface, dstrect->x, dstrect
871 DirectFB_HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
H A DSDL_dspvideo.c178 SDL_Surface *dst, SDL_Rect *dstrect);
1145 SDL_Surface *dst, SDL_Rect *dstrect)
1158 SetRect (&dst_rect, dstrect->x, dstrect->y, dstrect->x + dstrect->w, dstrect->y + dstrect->h);
1144 DSp_HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusGraphics.h2445 GraphicsContainer BeginContainer(IN const RectF &dstrect, argument
2451 SetStatus(DllExports::GdipBeginContainer(nativeGraphics, &dstrect,
2460 GraphicsContainer BeginContainer(IN const Rect &dstrect, argument
2466 SetStatus(DllExports::GdipBeginContainerI(nativeGraphics, &dstrect,

Completed in 1351 milliseconds