Lines Matching defs:blit
49 struct pipe_blit_info blit;
51 memset(&blit, 0, sizeof(blit));
53 blit.src.resource = src_tex;
54 blit.src.level = 0;
55 blit.src.format = src_tex->format;
56 blit.src.box.x = srcX0;
57 blit.src.box.y = srcY0;
58 blit.src.box.z = srcZ0;
59 blit.src.box.width = srcX1 - srcX0;
60 blit.src.box.height = srcY1 - srcY0;
61 blit.src.box.depth = 1;
63 blit.dst.resource = dst->texture;
64 blit.dst.level = dst->u.tex.level;
65 blit.dst.format = dst->format;
66 blit.dst.box.x = dstX0;
67 blit.dst.box.y = dstY0;
68 blit.dst.box.z = 0;
69 blit.dst.box.width = dstX1 - dstX0;
70 blit.dst.box.height = dstY1 - dstY0;
71 blit.dst.box.depth = 1;
73 blit.mask = PIPE_MASK_RGBA;
75 pipe->blit(pipe, &blit);