Lines Matching defs:dst_img

245 	struct g2d_image src_img = {0}, dst_img = {0};
254 dst_img.bo[0] = dst->handle;
299 dst_img.width = img_w;
300 dst_img.height = img_h;
301 dst_img.stride = dst_img.width * 4;
302 dst_img.buf_type = G2D_IMGBUF_GEM;
303 dst_img.color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
305 ret = g2d_copy(ctx, &src_img, &dst_img, src_x, src_y, dst_x, dst_y,
453 struct g2d_image src_img = {0}, dst_img = {0};
462 dst_img.bo[0] = dst->handle;
510 dst_img.width = img_w;
511 dst_img.height = img_h;
512 dst_img.buf_type = G2D_IMGBUF_GEM;
513 dst_img.stride = dst_img.width * 4;
514 dst_img.color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
516 ret = g2d_copy_with_scale(ctx, &src_img, &dst_img, 5, 5, 100, 100,
541 struct g2d_image src_img = {0}, dst_img = {0};
550 dst_img.bo[0] = dst->handle;
601 dst_img.width = img_w;
602 dst_img.height = img_h;
603 dst_img.stride = dst_img.width * 4;
604 dst_img.buf_type = G2D_IMGBUF_GEM;
605 dst_img.select_mode = G2D_SELECT_MODE_NORMAL;
606 dst_img.color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
607 dst_img.color = 0xffffffff;
608 ret = g2d_solid_fill(ctx, &dst_img, dst_x, dst_y, img_w, img_h);
612 dst_img.color = 0x77ff0000;
613 ret = g2d_solid_fill(ctx, &dst_img, 105, 105, 200, 200);
617 ret = g2d_blend(ctx, &src_img, &dst_img, 5, 5, 105, 105, 200, 200,
642 struct g2d_image src_img = {0}, dst_img = {0};
651 dst_img.bo[0] = dst->handle;
691 dst_img.width = screen_width;
692 dst_img.height = screen_height;
693 dst_img.stride = dst_img.width * 4;
694 dst_img.buf_type = G2D_IMGBUF_GEM;
695 dst_img.color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
697 ret = g2d_solid_fill(ctx, &dst_img, src_x, src_y, screen_width, screen_height);
701 ret = g2d_copy(ctx, &src_img, &dst_img, src_x, src_y, dst_x, dst_y,