Ignore:
Timestamp:
2011-08-13T19:51:31+02:00 (13 years ago)
Author:
bastiK
Message:

mapcss: add line offset

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java

    r4087 r4316  
    202202    @Override
    203203    public void render(final DataSet data, boolean renderVirtualNodes, Bounds bounds) {
    204         //long start = System.currentTimeMillis();
     204        long start = System.currentTimeMillis();
    205205        BBox bbox = new BBox(bounds);
    206206
     
    226226        collectWayStyles(data, sc, bbox);
    227227        collectRelationStyles(data, sc, bbox);
    228         //long phase1 = System.currentTimeMillis();
     228        long phase1 = System.currentTimeMillis();
    229229        sc.drawAll();
    230230        sc = null;
    231231        painter.drawVirtualNodes(data.searchWays(bbox));
    232232
    233         //long now = System.currentTimeMillis();
    234         //System.err.println(String.format("PAINTING TOOK %d [PHASE1 took %d] (at scale %s)", now - start, phase1 - start, circum));
     233        long now = System.currentTimeMillis();
     234        System.err.println(String.format("PAINTING TOOK %d [PHASE1 took %d] (at scale %s)", now - start, phase1 - start, circum));
    235235    }
    236236}
Note: See TracChangeset for help on using the changeset viewer.