Lines Matching refs:w
65 region.w = bbox.max.x - region.x; in bounds()
67 if (region.w < 0) region.w = 0; in bounds()
226 image.w = source->w; in run()
234 if (!image.data || image.w == 0 || image.h == 0) goto end; in run()
333 vport.w = surface->w; in clear()
360 bool SwRenderer::target(pixel_t* data, uint32_t stride, uint32_t w, uint32_t h, ColorSpace cs) in target() argument
362 if (!data || stride == 0 || w == 0 || h == 0 || w > stride) return false; in target()
370 surface->w = w; in target()
570 cmp->compositor->image.w = surface->w; in request()
576 cmp->w = cmp->compositor->image.w; in request()
593 auto w = region.w; in target() local
595 auto sw = static_cast<int32_t>(surface->w); in target()
599 if (x >= sw || y >= sh || x + w < 0 || y + h < 0) return nullptr; in target()
606 if (x + w > sw) w = (sw - x); in target()
614 cmp->compositor->bbox.max.x = x + w; in target()
620 rasterClear(cmp, x, y, w, h, color); in target()
715 …k->bbox.max.x = std::min(static_cast<SwCoord>(surface->w), static_cast<SwCoord>(vport.x + vport.w)… in prepareCommon()