ftsynth.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /***************************************************************************/
  2. /* */
  3. /* ftsynth.h */
  4. /* */
  5. /* FreeType synthesizing code for emboldening and slanting */
  6. /* (specification). */
  7. /* */
  8. /* Copyright 2000-2001 by */
  9. /* David Turner, Robert Wilhelm, and Werner Lemberg. */
  10. /* */
  11. /* This file is part of the FreeType project, and may only be used, */
  12. /* modified, and distributed under the terms of the FreeType project */
  13. /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
  14. /* this file you indicate that you have read the license and */
  15. /* understand and accept it fully. */
  16. /* */
  17. /***************************************************************************/
  18. /*************************************************************************/
  19. /*************************************************************************/
  20. /*************************************************************************/
  21. /*************************************************************************/
  22. /*************************************************************************/
  23. /********* *********/
  24. /********* WARNING, THIS IS ALPHA CODE, THIS API *********/
  25. /********* IS DUE TO CHANGE UNTIL STRICTLY NOTIFIED BY THE *********/
  26. /********* FREETYPE DEVELOPMENT TEAM *********/
  27. /********* *********/
  28. /*************************************************************************/
  29. /*************************************************************************/
  30. /*************************************************************************/
  31. /*************************************************************************/
  32. /*************************************************************************/
  33. #ifndef __FTSYNTH_H__
  34. #define __FTSYNTH_H__
  35. #include <ft2build.h>
  36. #include FT_FREETYPE_H
  37. FT_BEGIN_HEADER
  38. /* This code is completely experimental -- use with care! */
  39. /* It will probably be completely rewritten in the future */
  40. /* or even integrated into the library. */
  41. FT_EXPORT( void )
  42. FT_GlyphSlot_Embolden( FT_GlyphSlot slot );
  43. FT_EXPORT( void )
  44. FT_GlyphSlot_Oblique( FT_GlyphSlot slot );
  45. /* */
  46. FT_END_HEADER
  47. #endif /* __FTSYNTH_H__ */
  48. /* END */