Changes between Initial Version and Version 1 of Ticket #13275, comment 6


Ignore:
Timestamp:
2016-08-06T16:21:24+02:00 (9 years ago)
Author:
michael2402

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13275, comment 6

    initial v1  
    124124BENCHMARK: rendering phase 1 (calculate styles): 27 ms; phase 2 (draw): 117 ms; total: 144 ms (scale: 242.89089332231515 zoom level: 15)
    125125}}}
     126
     127There are some more optimizations I can think of:
     128- Make Style sorting a lot faster by giving each style a sorting index (long). I used a similar method for the [https://github.com/michaelzangl/josm-plugin-opengl/blob/master/src/org/openstreetmap/josm/gsoc2015/opengl/osm/StyledGeometryGenerator.java#L239 OpenGL rendering]
     129- Make search nodes/ways/relations parallel
     130- Create a new `QuadBucket` search method that returns a spliterator. That way we do not need the intermediate list.