[solved] Java2D Direct3D/OpenGL pipeline questions.

Hey JGO, I had a question about these property’s:


static {
	// Windows only
	System.setProperty("sun.java2d.transaccel", "True");
	System.setProperty("sun.java2d.d3d", "True");
	System.setProperty("sun.java2d.ddforcevram", "True");

	// All platforms
	// System.setProperty("sun.java2d.opengl", "True");
}

The console prints the message below when my first JFrame is created.

My question is:
Where it says ‘enabled on screen 0’ does this mean my GraphicsDevice (All JFrames) or just the JFrame?

Thanks for your feedback :slight_smile: