Lines Matching defs:blit
1751 struct pipe_blit_info blit;
1758 memset(&blit, 0, sizeof(blit));
1759 blit.dst.resource = dst->texture;
1760 blit.dst.box.x = dstx0;
1761 blit.dst.box.y = dsty0;
1762 blit.dst.box.width = dstwidth;
1763 blit.dst.box.height = dstheight;
1764 blit.dst.box.depth = 1;
1765 blit.dst.format = dst->texture->format;
1766 blit.src.resource = src->texture;
1767 blit.src.box.x = srcx0;
1768 blit.src.box.y = srcy0;
1769 blit.src.box.width = srcwidth;
1770 blit.src.box.height = srcheight;
1771 blit.src.box.depth = 1;
1772 blit.src.format = src->texture->format;
1773 blit.mask = PIPE_MASK_RGBA;
1774 blit.filter = PIPE_TEX_FILTER_NEAREST;
1776 pipe->blit(pipe, &blit);