Store font data in a std::vector<unsigned char>
This simplifies various method signatures, because the data array and its size do not have to be passed around separately, anymore. Also, using a std::vector makes tracking the ownership much easier.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
This simplifies various method signatures, because the data array and its size do not have to be passed around separately, anymore. Also, using a std::vector makes tracking the ownership much easier.