Home
last modified time | relevance | path

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

/AOO41X/main/vcl/aqua/source/gdi/
H A Dsalbmp.cxx59 , mnBytesPerRow(0) in AquaSalBitmap()
146 …( mnWidth, mnHeight, mnBits, mnBytesPerRow, maPalette, maUserBuffer.get(), rSourceBitmap.mnBits, r… in Create()
194 sal_uInt32 nContextBytesPerRow = mnBytesPerRow; in CreateContext()
220 mnBits, mnBytesPerRow, maPalette, maUserBuffer.get() ); in CreateContext()
248 mnBytesPerRow = 0; in AllocateUserData()
252 case 1: mnBytesPerRow = (mnWidth + 7) >> 3; break; in AllocateUserData()
253 case 4: mnBytesPerRow = (mnWidth + 1) >> 1; break; in AllocateUserData()
254 case 8: mnBytesPerRow = mnWidth; break; in AllocateUserData()
255 case 16: mnBytesPerRow = mnWidth << 1; break; in AllocateUserData()
256 case 24: mnBytesPerRow = (mnWidth << 1) + mnWidth; break; in AllocateUserData()
[all …]
/AOO41X/main/vcl/inc/aqua/
H A Dsalbmp.h65 sal_uInt32 mnBytesPerRow; variable