Re: [ft-devel] [patch] constify & fix typos

2005-05-17 Thread Werner LEMBERG
> Please apply. Done, thanks. Werner ___ Freetype-devel mailing list Freetype-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/freetype-devel

[ft-devel] Re: Project Files for VC++.net 2003

2005-05-17 Thread Werner LEMBERG
> I send new project files for VC++ NET 2003: Fix compiler options for > 'Release' versions - exclude debug info and reducing library size. Thanks, added. Any progress with the `otvalid' module? Attached you can find a sed script which expands the OTV_NEST* macros -- this is an intermediate sol

Re: [ft-devel] consistency of ftoutln.c and ftbitmap.c

2005-05-17 Thread David Turner
Chia I Wu a écrit : Hi all, I am trying to make ftbitmap.c the same thing to FT_Bitmap as ftoutln.c is to FT_Outline, but there's one problem. FT_Outline has "flags" and yet FT_Bitmap don't. I plan to add "flags" to FT_Bitmap and removes FT_GLYPH_OWN_BITMAP from FT_GlyphSlot_InternalRec. Will this

[ft-devel] [patch] several memory leaks when more than one glyph slot are created

2005-05-17 Thread Chia I Wu
Hi, Changes are list below, though currently no module uses more than one glyph slot in a face. * fixed a memory leak in FT_Done_GlyphSlot * removed a non-necessary loop in T42_GlyphSlot_Done * prepend glyph slot to face->glyph when FT_New_GlyphSlot is called, otherwise a new second glyph slot

[ft-devel] [patch] using FT_Bitmap_* calls in ftglyph.c

2005-05-17 Thread Chia I Wu
Hi all, This patch moves ft_bitmap_copy from ftglyph.c to ftbitmap.c and makes ftglyph.c depends on ftbitmap.c. The old dependency is: ftbitmap.c ftglyph.c (code for FT_Bitmap manipulation duplicated) / ftoutln.c And now it is: ftbitmap.c \ ftg