[quote]
/* do lazy copying whenever possible */
if ( slot->internal->flags & FT_GLYPH_OWN_BITMAP )
{
  glyph->bitmap          = slot->bitmap;       // Just copies the pointer!
  slot->internal->flags &= ~FT_GLYPH_OWN_BITMAP;  // Clears ownership flag
  // BUG: slot->bitmap.buffer is NOT set to NULL!
}
[/quote]

This is an interesting proposal. I think I agree but we should also
set FT_GLYPH_FORMAT_NONE.

Reply via email to