vectorgraphics2d icon indicating copy to clipboard operation
vectorgraphics2d copied to clipboard

Multithreading support

Open seifertm opened this issue 9 years ago • 0 comments

VectorGrahpics2D currently does not support multi-threaded drawing. Two causes have been identified so far (see issue #42):

  • Commands are not order-independent. Due to missing information about the graphics state, they depend on preceding commands.
  • VectorGraphics2D and objects created by VectorGraphics2D.create() share a common command list. This makes it impossible to draw into instances of VG2D in parallel.

seifertm avatar Jun 12 '16 21:06 seifertm