Searched refs:dstHeight (Results 1 - 3 of 3) sorted by relevance

/haiku/src/servers/app/drawing/Painter/bitmap_painter/
H A DDrawBitmapNearestNeighbor.h22 uint32 dstHeight = destinationRect.IntegerHeight() + 1; local
31 if (clippingRegion.Frame().IntegerHeight() + 1 < (int32)dstHeight)
32 dstHeight = clippingRegion.Frame().IntegerHeight() + 1;
50 uint16 yIndices[dstHeight];
71 for (uint32 i = 0; i < dstHeight; i++) {
84 // yIndices[0], yIndices[dstHeight - 2], yIndices[dstHeight - 1],
85 // dstHeight, srcHeight * scaleY);
H A DDrawBitmapBilinear.h490 uint32 dstHeight = destinationRect.IntegerHeight() + 1; local
499 if (clippingRegion.Frame().IntegerHeight() + 1 < (int32)dstHeight)
500 dstHeight = clippingRegion.Frame().IntegerHeight() + 1;
519 filterData.fWeightsY = new (nothrow) FilterInfo[dstHeight];
530 FilterInfo yWeights[dstHeight];
562 for (uint32 i = 0; i < dstHeight; i++) {
586 // yWeights[dstHeight - 2].index, yWeights[dstHeight - 2].weight,
587 // yWeights[dstHeight - 1].index, yWeights[dstHeight
[all...]
/haiku/src/libs/icon/
H A DIconUtils.cpp48 int32 dstHeight, uint32 bpr)
52 uint8* dst = bits + (dstHeight - 1) * bpr;
56 for (int32 y = dstHeight - 1; y >= 0; y--) {
57 int32 lineF = (y << 8) * (srcHeight - 1) / (dstHeight - 1);
114 int32 dstWidth, int32 dstHeight)
128 for (int32 i = 0; i < dstHeight; i++) {
130 tmp = (float)(i) / (float)(dstHeight - 1) * (srcHeight - 1);
751 uint32 dstHeight = icon->Bounds().IntegerHeight() + 1; local
757 if (dstWidth < width || dstHeight < height
758 || (dstWidth == 2 * width && dstHeight
47 scale_bilinear(uint8* bits, int32 srcWidth, int32 srcHeight, int32 dstWidth, int32 dstHeight, uint32 bpr) argument
113 scale_down(const uint8* srcBits, uint8* dstBits, int32 srcWidth, int32 srcHeight, int32 dstWidth, int32 dstHeight) argument
894 uint32 dstHeight = icon->Bounds().IntegerHeight() + 1; local
[all...]

Completed in 43 milliseconds