Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "basebmp/polypolygonrenderer.hxx"
21 :
22 : #include <algorithm>
23 :
24 :
25 : namespace basebmp
26 : {
27 : namespace detail
28 : {
29 1805266 : sal_uInt32 setupGlobalEdgeTable( VectorOfVectorOfVertices& rGET,
30 : basegfx::B2DPolyPolygon const& rPolyPoly,
31 : sal_Int32 nMinY )
32 : {
33 1805266 : sal_Int32 const nNumScanlines( (sal_Int32)rGET.size() );
34 :
35 : // add all polygons to GET
36 3614854 : for( sal_uInt32 i(0), nCount(rPolyPoly.count());
37 : i<nCount;
38 : ++i )
39 : {
40 : // add all vertices to GET
41 1809588 : const basegfx::B2DPolygon& rPoly( rPolyPoly.getB2DPolygon(i) );
42 10144179 : for( sal_uInt32 k(0), nVertices(rPoly.count());
43 : k<nVertices;
44 : ++k )
45 : {
46 8334591 : const basegfx::B2DPoint& rP1( rPoly.getB2DPoint(k) );
47 16669182 : const basegfx::B2DPoint& rP2( rPoly.getB2DPoint( (k + 1) % nVertices ) );
48 :
49 8334591 : const sal_Int32 nVertexYP1( basegfx::fround(rP1.getY()) );
50 8334591 : const sal_Int32 nVertexYP2( basegfx::fround(rP2.getY()) );
51 :
52 : // insert only vertices which are not strictly
53 : // horizontal. Strictly horizontal vertices don't add
54 : // any information that is not already present - due
55 : // to their adjacent vertices.
56 8334591 : if(nVertexYP1 != nVertexYP2)
57 : {
58 4154004 : if( nVertexYP2 < nVertexYP1 )
59 : {
60 2076947 : const sal_Int32 nStartScanline(nVertexYP2 - nMinY);
61 :
62 : // edge direction is upwards - add with swapped vertices
63 2076947 : if( nStartScanline < nNumScanlines )
64 2073081 : rGET[ nStartScanline ].push_back( Vertex(rP2, rP1, false) );
65 : }
66 : else
67 : {
68 2077057 : const sal_Int32 nStartScanline(nVertexYP1 - nMinY);
69 :
70 2077057 : if( nStartScanline < nNumScanlines )
71 2065977 : rGET[ nStartScanline ].push_back( Vertex(rP1, rP2, true) );
72 : }
73 : }
74 8334591 : }
75 1809588 : }
76 :
77 : // now sort all scanlines individually, with increasing x
78 : // coordinates
79 1805266 : VectorOfVectorOfVertices::iterator aIter( rGET.begin() );
80 1805266 : const VectorOfVectorOfVertices::iterator aEnd( rGET.end() );
81 1805266 : sal_uInt32 nVertexCount(0);
82 1805266 : RasterConvertVertexComparator aComp;
83 50991366 : while( aIter != aEnd )
84 : {
85 : std::sort( aIter->begin(),
86 : aIter->end(),
87 47380834 : aComp );
88 47380834 : nVertexCount += aIter->size();
89 :
90 47380834 : ++aIter;
91 : }
92 :
93 1805266 : return nVertexCount;
94 : }
95 :
96 50 : void sortAET( VectorOfVertexPtr& rAETSrc,
97 : VectorOfVertexPtr& rAETDest )
98 : {
99 50 : static RasterConvertVertexComparator aComp;
100 :
101 50 : rAETDest.clear();
102 :
103 : // prune AET from ended edges
104 50 : VectorOfVertexPtr::iterator iter( rAETSrc.begin() );
105 50 : VectorOfVertexPtr::iterator const end( rAETSrc.end() );
106 378 : while( iter != end )
107 : {
108 278 : if( (*iter)->mnYCounter > 0 )
109 175 : rAETDest.push_back( *iter );
110 278 : ++iter;
111 : }
112 :
113 : // stable sort is necessary, to avoid segment crossing where
114 : // none was intended.
115 50 : std::stable_sort( rAETDest.begin(), rAETDest.end(), aComp );
116 50 : }
117 :
118 : } // namespace detail
119 : } // namespace basebmp
120 :
121 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|