Home
last modified time | relevance | path

Searched refs:minY_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/rasterizer/
H A Drasterizer_cells_antialias.h117 return minY_; in GetMinY()
149 uint32_t MaxSize = maxY_ - minY_ + 1 + CELLS_SIZE; in GetScanlineNumCells()
150 if ((yLevel - minY_) > MaxSize) { in GetScanlineNumCells()
154 return sortedY_[yLevel - minY_].num; in GetScanlineNumCells()
165 uint32_t MaxSize = maxY_ - minY_ + 1 + CELLS_SIZE; in GetScanlineCells()
166 if ((yLevel - minY_) > MaxSize) { in GetScanlineCells()
170 return sortedCells_ + sortedY_[yLevel - minY_].start; in GetScanlineCells()
235 int32_t minY_; variable
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/
H A Drasterizer_cells_antialias.cpp31 GeometryArrayAllocator<SortedYLevel>::Deallocate(sortedY_, maxY_ - minY_ + 1 + CELLS_SIZE); in ~RasterizerCellsAntiAlias()
52 minY_(INT32_MAX), in RasterizerCellsAntiAlias()
74 minY_ = INT32_MAX; in Reset()
129 if (y1 < minY_) { in OutLineLegal()
130 minY_ = y1; in OutLineLegal()
141 if (y2 < minY_) { in OutLineLegal()
142 minY_ = y2; in OutLineLegal()
458 uint32_t sortedYSize = maxY_ - minY_ + 1; in SortAllCells()
476 if (((cellPtr->y - minY_) < 0) || ((cellPtr->y - minY_) > (sortedYSize + CELLS_SIZE))) { in SortAllCells()
481 sortedY_[cellPtr->y - minY_].start++; in SortAllCells()
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/src/
H A Dbasic_transformer.cpp72 minY_ = 0.0f; in ResetParam()
243 …InvProc(invertMatrix, static_cast<float>(x) + minX_ + FHALF, static_cast<float>(y) + minY_ + FHALF, in DrawPixelmap()
283 minY_ = std::min(min14Y, min23Y); in GetRotateDimension()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/include/
H A Dbasic_transformer.h195 float minY_ = 0.0f; variable