changeBack method
Changes the backbuffer size (and viewport size if no target is bound).
Implementation
@override
void changeBack(int width, int height) {
if (!hasTargetBound) {
glViewport(0, 0, width, height);
}
super.changeBack(width, height);
}