Lines Matching refs:nBWidth
474 … const sal_Int32 nBWidth(std::max(sal_Int32(1), basegfx::fround(aGraphicRange.getWidth()))); in RenderFillGraphicPrimitive2D() local
478 if(nBWidth > 0 && nBHeight > 0) in RenderFillGraphicPrimitive2D()
482 const Size aNeededBitmapSizePixel(nBWidth, nBHeight); in RenderFillGraphicPrimitive2D()
485 … const bool bPreScaled(bEnablePreScaling && nBWidth * nBHeight < (250 * 250)); in RenderFillGraphicPrimitive2D()
536 const sal_Int32 nDiff((nBLeft / nBWidth) + 1); in RenderFillGraphicPrimitive2D()
539 nBLeft -= nDiff * nBWidth; in RenderFillGraphicPrimitive2D()
542 if(nBLeft + nBWidth <= nOLeft) in RenderFillGraphicPrimitive2D()
544 const sal_Int32 nDiff(-nBLeft / nBWidth); in RenderFillGraphicPrimitive2D()
547 nBLeft += nDiff * nBWidth; in RenderFillGraphicPrimitive2D()
573 … const sal_Int32 nOffsetX(basegfx::fround(rFillGraphicAttribute.getOffsetX() * nBWidth)); in RenderFillGraphicPrimitive2D()
580 … for(sal_Int32 nXPos(nPosY % 2 ? nBLeft - nBWidth + nOffsetX : nBLeft); in RenderFillGraphicPrimitive2D()
581 nXPos < nOLeft + nOWidth; nXPos += nBWidth) in RenderFillGraphicPrimitive2D()
605 … for(sal_Int32 nXPos(nBLeft); nXPos < nOLeft + nOWidth; nXPos += nBWidth, nPosX++) in RenderFillGraphicPrimitive2D()