kc3-lang/ftgl/src/FTGlyph

Branch :


Log

Author Commit Date CI Message
66e53f95 2008-05-02 07:21:57 * Fix a memory leak in ~FTExtrudeGlyph: only one of the three display lists was being freed.
dfa07fc3 2008-05-02 07:20:51 * Fix a small memory leak in the C bindings destructors.
129a4733 2008-05-01 13:42:49 * Store FTPoints in the BBox object instead of floats. This was a todo from Henry.
f0705dc2 2008-05-01 10:54:28 * Inline most FTPoint methods and operators. This will probably make the code smaller instead of bigger, because most of what they do will be optimised out by the compiler. * Get rid of the weird GetNormal() method and reimplement it using the ^ operator (vector product) and Normalise() method instead.
fa7d0739 2008-05-01 09:31:27 * Mass consistency renaming: the fonts' "FTGL" prefix is dropped in favour of "FT" because all other types use only the latter. * Rename "Extrd" types to "Extrude" because the former doesn't really make much sense. * Added appropriate #defines so that legacy applications still build.
2aa2aeb5 2008-04-30 16:27:34 * Move include/* to src/FTGL/* so the files in there can directly be referred to as "FTGL/*.h". This is convenient because they will be installed in a similar location. * Put a warning in each legacy public header to advise users to only include the generic <FTGL/ftgl.h> header instead.
0c84f1f3 2008-04-29 22:59:41 * Wrote C bindings for the FTGlyph class.
7f4fcafa 2008-04-29 21:35:16 * End of the pImpl refactoring task started in [972]. FTGlyph was the last class needing the change. As a consequence, FTGlyph is now also exported in the library API, and so are FTBBox and FTPoint.
387dec48 2008-04-29 17:11:57 * Move FTGlyph, FTFont and FTLayout classes and their derivatives into separate subdirectories of src/ to avoid cluttering src/ with too many files. The Visual Studio solution still needs an update.