Home
last modified time | relevance | path

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

/haiku/src/apps/showimage/
H A DFilter.cpp354 intType srcBPR, destBPR; in ScaleBilinear() local
371 destBPR = dest->BytesPerRow(); in ScaleBilinear()
382 destDataRow = destBits + fromRow * destBPR; in ScaleBilinear()
384 for (y = fromRow; IsRunning() && y <= toRow; y++, destDataRow += destBPR) { in ScaleBilinear()
490 intType srcBPR, destBPR; in ScaleBilinearFP() local
507 destBPR = dest->BytesPerRow(); in ScaleBilinearFP()
524 destDataRow = destBits + fromRow * destBPR; in ScaleBilinearFP()
526 for (y = fromRow; IsRunning() && y <= toRow; y++, destDataRow += destBPR) { in ScaleBilinearFP()
649 intType srcBPR, destBPR; in DownScaleBilinear() local
667 destBPR = dest->BytesPerRow(); in DownScaleBilinear()
[all …]
H A DShowImageView.cpp1793 const int32 destBPR = icon.BytesPerRow(); in _SetIcon() local
1800 uchar* d = dest + (y + deltaY) * destBPR + (x + deltaX); in _SetIcon()