HomeSort by relevance Sort by last modified time
    Searched defs:dstx (Results 1 - 3 of 3) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv.c 87 int dstx, dsty, dstw, dsth; local
99 dstx = dstrect->x;
103 if ( dstx < 0 ) {
104 srcw += (dstx * overlay->w) / dstrect->w;
105 dstw += dstx;
106 srcx -= (dstx * overlay->w) / dstrect->w;
107 dstx = 0;
109 if ( (dstx+dstw) > current_video->screen->w ) {
110 int extra = (dstx+dstw - current_video->screen->w);
134 dst.x = dstx;
    [all...]
  /system/extras/tests/framebuffer/
mdp_test.c 181 int dstx = 10; int dsty = 10; local
206 if (parse_geometry(optarg, &dstw, &dsth, &dstx, &dsty)) {
210 printf("Got dest: w=%d h=%d x=%d y=%d\n", dstw, dsth, dstx, dsty);
310 req->dst_rect.x = dstx;
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 865 int dstx, dsty; local
879 DGA_dst_to_xy(this, dst, &dstx, &dsty);
880 dstx += dstrect->x;
885 printf("Blitting %dx%d from %d,%d to %d,%d\n", w, h, srcx, srcy, dstx, dsty);
889 srcx, srcy, w, h, dstx, dsty, src->format->colorkey);
892 srcx, srcy, w, h, dstx, dsty);

Completed in 123 milliseconds