Home
last modified time | relevance | path

Searched refs:fromRow (Results 1 – 2 of 2) sorted by relevance

/haiku/src/apps/showimage/
H A DFilter.h176 void ScaleBilinear(int32 fromRow, int32 toRow);
177 void ScaleBilinearFP(int32 fromRow, int32 toRow);
181 void DownScaleBilinear(int32 fromRow, int32 toRow);
183 void Dither(int32 fromRow, int32 toRow);
H A DFilter.cpp343 Scaler::ScaleBilinear(intType fromRow, int32 toRow) in ScaleBilinear() argument
382 destDataRow = destBits + fromRow * destBPR; in ScaleBilinear()
384 for (y = fromRow; IsRunning() && y <= toRow; y++, destDataRow += destBPR) { in ScaleBilinear()
479 Scaler::ScaleBilinearFP(intType fromRow, int32 toRow) in ScaleBilinearFP() argument
524 destDataRow = destBits + fromRow * destBPR; in ScaleBilinearFP()
526 for (y = fromRow; IsRunning() && y <= toRow; y++, destDataRow += destBPR) { in ScaleBilinearFP()
640 Scaler::DownScaleBilinear(intType fromRow, int32 toRow) in DownScaleBilinear() argument
669 destDataRow = destBits + fromRow * destBPR; in DownScaleBilinear()
688 for (y = fromRow; IsRunning() && y <= toRow; y ++, destDataRow += destBPR) { in DownScaleBilinear()
768 Scaler::Dither(int32 fromRow, int32 toRow) in Dither() argument
[all …]