Hello, I have slick2d, and want higher res. Here is my current appgamecontainer init code:
public Main(String title) throws SlickException {
super(title);
AppGameContainer app = new AppGameContainer(this);
app.setDisplayMode(600, 600, false);
app.setTargetFrameRate(60);
app.setVSync(false);
app.setVerbose(true);
app.setMaximumLogicUpdateInterval(1000);
app.setMinimumLogicUpdateInterval(0);
gc = app;
app.start();
}
When I rotate objects, the sides get all jagged.
See how jagged it gets? Is resolution even going to help?
I do not want to change the size of the actual appGameContainer