Blame | Last modification | View Log | RSS feed
Framework 1.22 changes:* Support for Visual Studio 2005* Fixed some C++ language conformance issues* Fixed some bugs with the flash widget and rendering issues* Got tired of casting warnings, properly casting stuff now* Fixed some demo bugs and bad programming practices* IMPORTANT NEW CHANGE: in order to cut filesize bloat, causedby the addition of the software triangle rasterizercode in 1.21, you now need to do the following IF youuse DrawImageMatrix or DrawImageTransform (with acomplex transformation) or if you get errors compilingor at run time you get the assert "You need to callSWTri_AddDrawTriFunc or SWTri_AddAllDrawTriFuncs"1. Include "SexyAppFramework/SWTri.h"2. Call the function SWTri_AddAllDrawTriFuncs()3. Alternatively to #2, if you know which triangle drawfunctions you need, you can add them specifically viaSWTri_AddDrawTriFunc(...) and specifying which drawfunction you need (check SWTri.h for a list).* Removed the ImageLib project files as they aren't needed, to avoid confusion