By jlnr (dev)
Date 2010-09-07 18:31
Some old and new annoyances being fixed, nothing ground-breaking to see here.
• Windows: Fixed speed issues (re-introduced optimization switch)
• C++: Made Image, Sample, Font copy-constructable because they are immutable - should greatly reduce the need of shared_ptrs.
• OS X: Improved text rendering
• Ruby: line_height (argument to Image#from_text) is now a signed int, not unsigned int
• All: Made all beginClipping/clip_to arguments doubles instead of ints
The second item should come as a great delight to anyone who is getting nightmares from all those shared_ptrs and scoped_ptrs already. There is still no default constructor though, because I hate empty dummy objects. If you need an Image sometimes/later, use boost::optional—it's a header-only lib without any real overhead.
Loading...