Home | History | Annotate | Download | only in nvc0

Lines Matching refs:box

1229    x_range = (float)info->src.box.width / (float)info->dst.box.width;
1230 y_range = (float)info->src.box.height / (float)info->dst.box.height;
1232 x0 = (float)info->src.box.x - x_range * (float)info->dst.box.x;
1233 y0 = (float)info->src.box.y - y_range * (float)info->dst.box.y;
1243 dz = (float)info->src.box.depth / (float)info->dst.box.depth;
1244 z = (float)info->src.box.z;
1276 minx = info->dst.box.x;
1277 maxx = info->dst.box.x + info->dst.box.width;
1278 miny = info->dst.box.y;
1279 maxy = info->dst.box.y + info->dst.box.height;
1291 length = stride * 3 * info->dst.box.depth;
1348 for (i = 0; i < info->dst.box.depth; ++i, z += dz) {
1349 if (info->dst.box.z + i) {
1351 PUSH_DATA (push, info->dst.box.z + i);
1379 if (info->dst.box.z + info->dst.box.depth - 1)
1394 const int32_t srcx_adj = info->src.box.width < 0 ? -1 : 0;
1395 const int32_t srcy_adj = info->src.box.height < 0 ? -1 : 0;
1396 const int dz = info->dst.box.z;
1397 const int sz = info->src.box.z;
1413 du_dx = ((int64_t)info->src.box.width << 32) / info->dst.box.width;
1414 dv_dy = ((int64_t)info->src.box.height << 32) / info->dst.box.height;
1472 srcx = (int64_t)(info->src.box.x + srcx_adj) << (src->ms_x + 32);
1473 srcy = (int64_t)(info->src.box.y + srcy_adj) << (src->ms_y + 32);
1481 dstx = info->dst.box.x << dst->ms_x;
1482 dsty = info->dst.box.y << dst->ms_y;
1484 dstw = info->dst.box.width << dst->ms_x;
1485 dsth = info->dst.box.height << dst->ms_y;
1516 for (i = 0; i < info->dst.box.depth; ++i) {
1521 PUSH_DATA (push, info->dst.box.z + i);
1523 const unsigned z = info->dst.box.z + i;
1535 const unsigned z = info->src.box.z + i;
1591 if (info->src.box.depth != info->dst.box.depth) {
1628 if ((info->src.box.width != info->dst.box.width &&
1629 info->src.box.width != -info->dst.box.width) ||
1630 (info->src.box.height != info->dst.box.height &&
1631 info->src.box.height != -info->dst.box.height))