Lines Matching defs:blit
40 struct pipe_blit_info blit;
42 memset(&blit, 0, sizeof(blit));
43 blit.src.resource = src;
44 blit.src.format = src->format;
45 blit.src.level = src_level;
46 blit.src.box = *src_box;
47 blit.dst.resource = dst;
48 blit.dst.format = dst->format;
49 blit.dst.level = dst_level;
50 blit.dst.box.x = dst_box->x;
51 blit.dst.box.y = dst_box->y;
52 blit.dst.box.z = dst_box->z;
53 blit.dst.box.width = dst_box->width;
54 blit.dst.box.height = dst_box->height;
55 blit.dst.box.depth = dst_box->depth;
56 blit.mask = util_format_get_mask(src->format) &
58 blit.filter = PIPE_TEX_FILTER_NEAREST;
60 if (blit.mask) {
61 pipe->blit(pipe, &blit);
273 * blit here will currently fail. This could for instance happen if the