A small optimization. The BitmapTextPage does not

require custom updates so it now signifies that.
This commit is contained in:
Paul Speed 2015-11-17 02:39:46 -05:00
parent cde35a005a
commit d57147e392

View File

@ -59,6 +59,7 @@ class BitmapTextPage extends Geometry {
BitmapTextPage(BitmapFont font, boolean arrayBased, int page) {
super("BitmapFont", new Mesh());
setRequiresUpdates(false);
setBatchHint(BatchHint.Never);
if (font == null) {
throw new IllegalArgumentException("font cannot be null.");