Home | History | Annotate | Download | only in nv50

Lines Matching refs:box

456                    const struct pipe_box *box,
462 tmpl.u.tex.first_layer = box->z;
463 tmpl.u.tex.last_layer = box->z + box->depth - 1;
485 box->x, box->y, box->width, box->height, false);
521 box->x, box->y, box->width, box->height, false);
1370 x_range = (float)info->src.box.width / (float)info->dst.box.width;
1371 y_range = (float)info->src.box.height / (float)info->dst.box.height;
1376 x0 = (float)info->src.box.x - x_range * (float)info->dst.box.x;
1377 y0 = (float)info->src.box.y - y_range * (float)info->dst.box.y;
1388 dz = (float)info->src.box.depth / (float)info->dst.box.depth;
1389 z = (float)info->src.box.z;
1419 minx = info->dst.box.x;
1420 maxx = info->dst.box.x + info->dst.box.width;
1421 miny = info->dst.box.y;
1422 maxy = info->dst.box.y + info->dst.box.height;
1433 for (i = 0; i < info->dst.box.depth; ++i, z += dz) {
1434 if (info->dst.box.z + i) {
1436 PUSH_DATA (push, info->dst.box.z + i);
1465 if (info->dst.box.z + info->dst.box.depth - 1) {
1484 const int32_t srcx_adj = info->src.box.width < 0 ? -1 : 0;
1485 const int32_t srcy_adj = info->src.box.height < 0 ? -1 : 0;
1486 const int32_t dz = info->dst.box.z;
1487 const int32_t sz = info->src.box.z;
1503 du_dx = ((int64_t)info->src.box.width << 32) / info->dst.box.width;
1504 dv_dy = ((int64_t)info->src.box.height << 32) / info->dst.box.height;
1558 srcx = (int64_t)(info->src.box.x + srcx_adj) << (src->ms_x + 32);
1559 srcy = (int64_t)(info->src.box.y + srcy_adj) << (src->ms_y + 32);
1567 dstx = info->dst.box.x << dst->ms_x;
1568 dsty = info->dst.box.y << dst->ms_y;
1570 dstw = info->dst.box.width << dst->ms_x;
1571 dsth = info->dst.box.height << dst->ms_y;
1603 for (i = 0; i < info->dst.box.depth; ++i) {
1608 PUSH_DATA (push, info->dst.box.z + i);
1610 const unsigned z = info->dst.box.z + i;
1622 const unsigned z = info->src.box.z + i;
1683 if (info->src.box.depth != info->dst.box.depth) {
1721 if ((info->src.box.width != info->dst.box.width &&
1722 info->src.box.width != -info->dst.box.width) ||
1723 (info->src.box.height != info->dst.box.height &&
1724 info->src.box.height != -info->dst.box.height))