using the slick textfield class i see that the border is not correctly displayed
(the right and bottom line are not visible)
it should be something like width-1, height-1 cause the border takes 1px
Code:
if (border != null) {
g.setColor(border.multiply(clr));
g.drawRect(x, y, width-1, height-1);
}
some small issues on GDXGameContainer
log on initGL in should be info and not error
Log.info("Starting display "+width+"x"+height+" "+realWidth+"x"+realHeight);
also on create()
Log.info("Creating application: "+app);