()
| 576 | GraphicsContext.getContext().stateTracker.blendState.set( |
| 577 | new int[]{GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA}); |
| 578 | |
| 579 | Log.log("graphics.trace", () -> "internalScene is ...\n" + scene.debugPrintScene()); |
| 580 | |
| 581 | scene.updateAll(); |
| 582 | } finally { |
| 583 | GraphicsContext.exitContext(graphicsContext); |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | public GraphicsContext getGraphicsContext() { |
| 588 | if (graphicsContext == null) |
| 589 | System.err.println("WARNING: no graphics context for window"); |
| 590 | return graphicsContext; |
no test coverage detected