There's been a bit of fuss around mkxp in the fangame community (cough cough Marin cough cough Pokemon MK cough cough) and I personally love it. The performance is so much better than that of regular RGSS, and that got me thinking - would the voxel engine work? Well, yes and no. You see, mkxp has a limit on how large you can make bitmaps (which is 8192*8192, the opengl texture limit). This meant any spritesheets bigger than 8192 pixels wide would throw errors when trying to do anything.
This update changes the code ever so slightly so that the individual frames are transferred onto the bitmaps of each sprite, instead of being cropped with src_rect. This means you can create models with frame sizes up to 8192*8192 - in mkxp. While this update does slightly improve performance in standard RGSS, it's still not great when using large models.
Also note - while performance in mkxp is better, an 8192*8192 model would definitely be too much.