Bunkerbewohner / ColladaXna

Collada Importer for XNA (Work in Progress)
https://github.com/Bunkerbewohner/ColladaXna/wiki
MIT License
15 stars 3 forks source link

Use SAX instead of DOM for Parsing #4

Open Bunkerbewohner opened 13 years ago

Bunkerbewohner commented 13 years ago

Currently the library uses the DOM based XmlDocument class for parsing COLLADA documents which offers easy access to the XML data. However, since COLLADA models can be several MB large this method can be very memory consuming. An alternative SAX implementation would probably not only save memory, but also would be faster.