Lines Matching defs:blit
60 struct pipe_blit_info blit;
62 memset(&blit, 0, sizeof(blit));
63 blit.src.resource = src;
64 blit.src.format = src->format;
65 blit.src.level = transfer->level;
66 blit.src.box = transfer->box;
67 blit.dst.resource = dst;
68 blit.dst.format = dst->format;
69 blit.dst.box.width = transfer->box.width;
70 blit.dst.box.height = transfer->box.height;
71 blit.dst.box.depth = transfer->box.depth;
72 blit.mask = PIPE_MASK_RGBA;
73 blit.filter = PIPE_TEX_FILTER_NEAREST;
75 ctx->blit(ctx, &blit);
196 * in a different order, therefore we do detiling using a blit. */
199 /* Always referenced in the blit. */