String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "Texture\r\n";
Texture texture = (Texture) obj;
Color4f color = new Color4f();
texture.getBoundaryColor( color );
szText += "Boundary Color: " + color + "\r\n";
szText += "Boundary Mode S: " + texture.getBoundaryModeS() + "\r\n";
szText += "Boundary Mode T: " + texture.getBoundaryModeT() + "\r\n";
szText += "Enable: " + texture.getEnable() + "\r\n";
szText += "Mag Filter: " + texture.getMagFilter() + "\r\n";
szText += "Min Filter: " + texture.getMinFilter() + "\r\n";
szText += "MipMap Mode: " + texture.getMipMapMode() + "\r\n";
return szText;