-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFramework 1.22 Changes.txt
28 lines (20 loc) · 1.06 KB
/
Framework 1.22 Changes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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, caused
by the addition of the software triangle rasterizer
code in 1.21, you now need to do the following IF you
use DrawImageMatrix or DrawImageTransform (with a
complex transformation) or if you get errors compiling
or at run time you get the assert "You need to call
SWTri_AddDrawTriFunc or SWTri_AddAllDrawTriFuncs"
1. Include "SexyAppFramework/SWTri.h"
2. Call the function SWTri_AddAllDrawTriFuncs()
3. Alternatively to #2, if you know which triangle draw
functions you need, you can add them specifically via
SWTri_AddDrawTriFunc(...) and specifying which draw
function you need (check SWTri.h for a list).
* Removed the ImageLib project files as they aren't needed, to avoid confusion