211212213214215216217218219220221
} // System.out.println("drawImage GNR: " + g2dCS); GraphicsNode gn = getGraphicsNode(); if (getUsePrimitivePaint()){ gn.primitivePaint(g2d); } else{ gn.paint(g2d); }
212213214215216217218219220221222
204205206207208209210211212213214
245246247248249250251252253254255
213214215216217218219220221222223
199200201202203204205206207208209
GraphicsNode gn = getGraphicsNode(); GraphicsNodeRenderContext gnrc = GraphicsNodeRenderContext.getGraphicsNodeRenderContext(g2d); if (getUsePrimitivePaint()){ gn.primitivePaint(g2d, gnrc); } else{ gn.paint(g2d, gnrc); }
203204205206207208209210211212213
218219220221222223224225226227228