Lines Matching refs:aMatrix

1141         Matrix aMatrix;  in strokePolyPolygon()  local
1143 cairo_get_matrix( mpCairo.get(), &aMatrix ); in strokePolyPolygon()
1144 cairo_matrix_transform_distance( &aMatrix, &w, &h ); in strokePolyPolygon()
1315 Matrix aMatrix; in implDrawBitmapSurface() local
1317 cairo_get_matrix( mpCairo.get(), &aMatrix ); in implDrawBitmapSurface()
1318 if( ! ::rtl::math::approxEqual( aMatrix.xx, 1 ) && in implDrawBitmapSurface()
1319 ! ::rtl::math::approxEqual( aMatrix.yy, 1 ) && in implDrawBitmapSurface()
1320 ::rtl::math::approxEqual( aMatrix.x0, 0 ) && in implDrawBitmapSurface()
1321 ::rtl::math::approxEqual( aMatrix.y0, 0 ) && in implDrawBitmapSurface()
1322 basegfx::fround( rSize.Width * aMatrix.xx ) > 8 && in implDrawBitmapSurface()
1323 basegfx::fround( rSize.Height* aMatrix.yy ) > 8 ) in implDrawBitmapSurface()
1327 dWidth = basegfx::fround( rSize.Width * aMatrix.xx ); in implDrawBitmapSurface()
1328 dHeight = basegfx::fround( rSize.Height* aMatrix.yy ); in implDrawBitmapSurface()
1345 aMatrix.xx = aMatrix.yy = 1; in implDrawBitmapSurface()
1346 cairo_set_matrix( mpCairo.get(), &aMatrix ); in implDrawBitmapSurface()
1364 cairo_matrix_transform_point( &aMatrix, &x, &y ); in implDrawBitmapSurface()
1365 cairo_matrix_transform_distance( &aMatrix, &width, &height ); in implDrawBitmapSurface()
1382 cairo_set_matrix( mpCairo.get(), &aMatrix ); in implDrawBitmapSurface()
1389 ::rtl::math::approxEqual( aMatrix.xx, 1 ) && in implDrawBitmapSurface()
1390 ::rtl::math::approxEqual( aMatrix.yy, 1 ) && in implDrawBitmapSurface()
1391 ::rtl::math::approxEqual( aMatrix.x0, 0 ) && in implDrawBitmapSurface()
1392 ::rtl::math::approxEqual( aMatrix.y0, 0 ) ) in implDrawBitmapSurface()
1976 Matrix aMatrix; in repaint() local
1978 cairo_get_matrix( mpCairo.get(), &aMatrix ); in repaint()
1979 aMatrix.xx = aMatrix.yy = 1; in repaint()
1980 cairo_set_matrix( mpCairo.get(), &aMatrix ); in repaint()