Lines Matching defs:blit
85 struct pipe_blit_info blit;
111 memset(&blit, 0, sizeof(blit));
112 blit.dst.resource = dst;
113 blit.dst.box.width = dst->width0;
114 blit.dst.box.height = dst->height0;
115 blit.dst.box.depth = 1;
116 blit.dst.format = dst->format;
117 blit.src.resource = src;
118 blit.src.box.width = src->width0;
119 blit.src.box.height = src->height0;
120 blit.src.box.depth = 1;
121 blit.src.format = src->format;
122 blit.mask = PIPE_MASK_RGBA;
123 blit.filter = PIPE_TEX_FILTER_NEAREST;
125 pipe->blit(pipe, &blit);
296 /* TODO Only blit if there is something currently drawn on the back buffer */