Searched defs:srcx (Results 1 - 8 of 8) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv.c86 int srcx, srcy, srcw, srch; local
95 srcx = 0;
106 srcx -= (dstx * overlay->w) / dstrect->w;
130 src.x = srcx;
H A DSDL_surface.c448 int srcx, srcy, w, h; local
470 srcx = srcrect->x;
472 if(srcx < 0) {
473 w += srcx;
474 dstrect->x -= srcx;
475 srcx = 0;
477 maxw = src->w - srcx;
493 srcx = srcy = 0;
507 srcx += dx;
526 sr.x = srcx;
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dextend.c107 int srcy, int srcx,
114 int src_y_offset = srcy * src->y_stride + srcx;
115 int dst_y_offset = srcy * dst->y_stride + srcx;
116 int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1);
117 int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1);
122 if (srcx)
126 if (srcx + srcw != src->y_width)
105 vp8_copy_and_extend_frame_with_rect(YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, int srcy, int srcx, int srch, int srcw) argument
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/
H A DXF86DGA2.c543 int srcx,
560 req->srcx = srcx;
573 int srcx,
591 req->srcx = srcx;
540 XDGACopyArea( Display *dpy, int screen, int srcx, int srcy, unsigned int width, unsigned int height, int dstx, int dsty ) argument
570 XDGACopyTransparentArea( Display *dpy, int screen, int srcx, int srcy, unsigned int width, unsigned int height, int dstx, int dsty, unsigned long key ) argument
/external/quake/quake/src/QW/client/
H A Ddraw.c395 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height) argument
409 source = pic->data + srcy * pic->width + srcx;
429 for (u=srcx ; u<(srcx+width) ; u++)
H A Dsbar.c244 void Sbar_DrawSubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height) argument
246 Draw_SubPic (x, y+(vid.height-SBAR_HEIGHT), pic, srcx, srcy, width, height);
H A Dgl_draw.c683 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height) argument
696 newsl = gl->sl + (srcx*oldglwidth)/pic->width;
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgavideo.c868 int srcx, srcy; local
880 DGA_dst_to_xy(this, src, &srcx, &srcy);
881 srcx += srcrect->x;
889 printf("Blitting %dx%d from %d,%d to %d,%d\n", w, h, srcx, srcy, dstx, dsty);
893 srcx, srcy, w, h, dstx, dsty, src->format->colorkey);
896 srcx, srcy, w, h, dstx, dsty);

Completed in 516 milliseconds