Lines Matching refs:bbox
47 SwBBox bbox; //Rendering Region member
63 region.x = bbox.min.x > 0 ? bbox.min.x : 0; in bounds()
64 region.y = bbox.min.y > 0 ? bbox.min.y : 0; in bounds()
65 region.w = bbox.max.x - region.x; in bounds()
66 region.h = bbox.max.y - region.y; in bounds()
109 if (shape.fastTrack) rleClip(target, &bbox); in clip()
120 bbox.reset(); in run()
140 …if (!shapePrepare(&shape, rshape, transform, bbox, renderRegion, mpool, tid, clips.count > 0 ? tru… in run()
164 … if (!shapeGenStrokeRle(&shape, rshape, transform, bbox, renderRegion, mpool, tid)) goto err; in run()
189 bbox = renderRegion; //sync in run()
194 bbox.reset(); in run()
219 auto clipRegion = bbox; in run()
236 if (!imagePrepare(&image, transform, clipRegion, bbox, mpool, tid)) goto end; in run()
239 if (!imageGenRle(&image, bbox, false)) goto end; in run()
422 return rasterImage(surface, &task->image, task->transform, task->bbox, task->opacity); in renderImage()
612 cmp->compositor->bbox.min.x = x; in target()
613 cmp->compositor->bbox.min.y = y; in target()
614 cmp->compositor->bbox.max.x = x + w; in target()
615 cmp->compositor->bbox.max.y = y + h; in target()
643 return rasterImage(surface, &p->image, m, p->bbox, p->opacity); in endComposite()
665 …case SceneEffect::GaussianBlur: return effectGaussianBlur(p->image, buffer, p->bbox, static_cast<c… in effect()
713 task->bbox.min.x = std::max(static_cast<SwCoord>(0), static_cast<SwCoord>(vport.x)); in prepareCommon()
714 task->bbox.min.y = std::max(static_cast<SwCoord>(0), static_cast<SwCoord>(vport.y)); in prepareCommon()
715 …task->bbox.max.x = std::min(static_cast<SwCoord>(surface->w), static_cast<SwCoord>(vport.x + vport… in prepareCommon()
716 …task->bbox.max.y = std::min(static_cast<SwCoord>(surface->h), static_cast<SwCoord>(vport.y + vport… in prepareCommon()