Home | History | Annotate | Download | only in util

Lines Matching refs:srcbox

1514                                const struct pipe_box *srcbox)
1525 u_box_3d(dstx, dsty, dstz, abs(srcbox->width), abs(srcbox->height),
1526 abs(srcbox->depth), &dstbox);
1538 src_view, srcbox, src->width0, src->height0,
1552 const struct pipe_box *srcbox,
1580 get_texcoords(src, src_width0, src_height0, srcbox->x, srcbox->y,
1581 srcbox->x+srcbox->width, srcbox->y+srcbox->height, coord.f);
1602 float dst2src_scale = srcbox->depth / (float)dstbox->depth;
1621 float dst_offset = ((srcbox->depth - 1) -
1641 srcbox->z + src_z,
1642 i, srcbox->x, srcbox->y,
1643 srcbox->x + srcbox->width,
1644 srcbox->y + srcbox->height);
1653 srcbox->z + src_z, 0,
1654 srcbox->x, srcbox->y,
1655 srcbox->x + srcbox->width,
1656 srcbox->y + srcbox->height);
1679 const struct pipe_box *srcbox,
1715 (dstbox->width == abs(srcbox->width) &&
1716 dstbox->height == abs(srcbox->height))) {
1824 srcbox, blit_depth || blit_stencil);
1926 struct pipe_box dstbox = {0}, srcbox = {0};
1932 srcbox.width = u_minify(tex->width0, src_level);
1933 srcbox.height = u_minify(tex->height0, src_level);
1937 srcbox.depth = util_max_layer(tex, src_level) + 1;
1939 dstbox.z = srcbox.z = first_layer;
1940 dstbox.depth = srcbox.depth = last_layer - first_layer + 1;
1957 &srcbox, is_depth);