Lines Matching full:h
23 #include "../../lv_conf_internal.h"
27 #include <omp.h>
30 #include "tvgMath.h"
31 #include "tvgSwCommon.h"
32 #include "tvgTaskScheduler.h"
33 #include "tvgSwRenderer.h"
66 region.h = bbox.max.y - region.y; in bounds()
68 if (region.h < 0) region.h = 0; in bounds()
227 image.h = source->h; in run()
234 if (!image.data || image.w == 0 || image.h == 0) goto end; in run()
334 vport.h = surface->h; 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()
371 surface->h = h; in target()
569 cmp->compositor->image.data = (pixel_t*)malloc(channelSize * surface->stride * surface->h); in request()
571 cmp->compositor->image.h = surface->h; in request()
577 cmp->h = cmp->compositor->image.h; in request()
594 auto h = region.h; in target() local
596 auto sh = static_cast<int32_t>(surface->h); in target()
599 if (x >= sw || y >= sh || x + w < 0 || y + h < 0) return nullptr; in target()
607 if (y + h > sh) h = (sh - y); in target()
615 cmp->compositor->bbox.max.y = y + h; in target()
620 rasterClear(cmp, x, y, w, h, color); in target()
716 …k->bbox.max.y = std::min(static_cast<SwCoord>(surface->h), static_cast<SwCoord>(vport.y + vport.h)… in prepareCommon()