Lines Matching refs:maSize
178 ::basegfx::B2IVector maSize;
238 ::basegfx::B2IVector maSize;
313 maSize() in DXSurface()
345 maSize = rSize; in DXSurface()
412 rect.right = std::min(maSize.getX(), in update()
414 rect.bottom = std::min(maSize.getY(), in update()
416 const bool bClearRightColumn( rect.right < maSize.getX() ); in update()
417 const bool bClearBottomRow( rect.bottom < maSize.getY() ); in update()
560 return maSize; in getSize()
579 maSize(), in DXRenderModule()
713 maSize.setX(static_cast<sal_Int32>(rSizePixel.Width())); in create()
714 maSize.setY(static_cast<sal_Int32>(rSizePixel.Height())); in create()
717 mpWindow->SetPosSizePixel(0,0,maSize.getX(),maSize.getY()); in create()
839 mad3dpp.BackBufferWidth = std::max(sal_Int32(maSize.getX()), in createDevice()
841 mad3dpp.BackBufferHeight = std::max(sal_Int32(maSize.getY()), in createDevice()
1016 if(maSize.getX() == static_cast<sal_Int32>(rect.getWidth()) && in resize()
1017 maSize.getY() == static_cast<sal_Int32>(rect.getHeight())) in resize()
1021 maSize.setX(static_cast<sal_Int32>(rect.getWidth())); in resize()
1022 maSize.setY(static_cast<sal_Int32>(rect.getHeight())); in resize()
1024 mpWindow->SetPosSizePixel(0,0,maSize.getX(),maSize.getY()); in resize()
1031 if(!(maSize.getX())) in resize()
1033 if(!(maSize.getY())) in resize()
1038 if( sal_Int32(mad3dpp.BackBufferWidth) < maSize.getX() || in resize()
1039 sal_Int32(mad3dpp.BackBufferHeight) < maSize.getY() ) in resize()
1041 mad3dpp.BackBufferWidth = maSize.getX(); in resize()
1042 mad3dpp.BackBufferHeight = maSize.getY(); in resize()