Lines Matching refs:rBitmap

421                         const PrinterBmp& rBitmap)  in DrawBitmap()  argument
432 if (rBitmap.GetDepth() == 1) in DrawBitmap()
434 DrawPS2MonoImage (rBitmap, rSrc); in DrawBitmap()
437 if (rBitmap.GetDepth() == 8 && mbColor) in DrawBitmap()
443 sal_Int32 nPaletteSz = rBitmap.GetPaletteEntryCount(); in DrawBitmap()
445 DrawPS2TrueColorImage (rBitmap, rSrc); in DrawBitmap()
447 DrawPS2PaletteImage (rBitmap, rSrc); in DrawBitmap()
450 if (rBitmap.GetDepth() == 24 && mbColor) in DrawBitmap()
452 DrawPS2TrueColorImage (rBitmap, rSrc); in DrawBitmap()
456 DrawPS2GrayImage (rBitmap, rSrc); in DrawBitmap()
461 DrawPS1GrayImage (rBitmap, rSrc); in DrawBitmap()
502 PrinterGfx::DrawPS1GrayImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS1GrayImage() argument
532 sal_uChar nByte = rBitmap.GetPixelGray (nRow, nColumn); in DrawPS1GrayImage()
578 PrinterGfx::writePS2Colorspace(const PrinterBmp& rBitmap, psp::ImageType nType) in writePS2Colorspace() argument
599 const sal_uInt32 nSize = rBitmap.GetPaletteEntryCount(); in writePS2Colorspace()
613 PrinterColor aColor = rBitmap.GetPaletteColor(i); in writePS2Colorspace()
629 PrinterGfx::DrawPS2GrayImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2GrayImage() argument
631 writePS2Colorspace(rBitmap, psp::GrayScaleImage); in DrawPS2GrayImage()
641 sal_uChar nByte = rBitmap.GetPixelGray (nRow, nColumn); in DrawPS2GrayImage()
650 PrinterGfx::DrawPS2MonoImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2MonoImage() argument
652 writePS2Colorspace(rBitmap, psp::MonochromeImage); in DrawPS2MonoImage()
666 nBit = rBitmap.GetPixelIdx (nRow, nColumn); in DrawPS2MonoImage()
685 PrinterGfx::DrawPS2PaletteImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2PaletteImage() argument
687 writePS2Colorspace(rBitmap, psp::PaletteImage); in DrawPS2PaletteImage()
697 sal_uChar nByte = rBitmap.GetPixelIdx (nRow, nColumn); in DrawPS2PaletteImage()
706 PrinterGfx::DrawPS2TrueColorImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2TrueColorImage() argument
708 writePS2Colorspace(rBitmap, psp::TrueColorImage); in DrawPS2TrueColorImage()
718 PrinterColor aColor = rBitmap.GetPixelRGB (nRow, nColumn); in DrawPS2TrueColorImage()