2000-08-23 19:32:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftsynth.h */
|
|
|
|
/* */
|
|
|
|
/* FreeType synthesizing code for emboldening and slanting */
|
|
|
|
/* (specification). */
|
|
|
|
/* */
|
|
|
|
/* Copyright 2000 by */
|
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-10-12 07:05:40 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/********* *********/
|
|
|
|
/********* WARNING, THIS IS ALPHA CODE, THIS API *********/
|
|
|
|
/********* IS DUE TO CHANGE UNTIL STRICTLY NOTIFIED BY THE *********/
|
|
|
|
/********* FREETYPE DEVELOPMENT TEAM *********/
|
|
|
|
/********* *********/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
#ifndef FTSYNTH_H
|
|
|
|
#define FTSYNTH_H
|
|
|
|
|
|
|
|
#include <freetype/freetype.h>
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-10-12 07:05:40 +02:00
|
|
|
/* This code is completely experimental -- use with care! */
|
2000-08-23 19:32:42 +02:00
|
|
|
/* It will probably be completely rewritten in the future */
|
2000-10-12 07:05:40 +02:00
|
|
|
/* or even integrated into the library. */
|
2000-10-15 23:59:58 +02:00
|
|
|
FT_EXPORT_DEF( FT_Error ) FT_Outline_Embolden( FT_GlyphSlot original,
|
|
|
|
FT_Outline* outline,
|
|
|
|
FT_Pos* advance );
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-10-15 23:59:58 +02:00
|
|
|
FT_EXPORT_DEF( FT_Error ) FT_Outline_Oblique( FT_GlyphSlot original,
|
|
|
|
FT_Outline* outline,
|
|
|
|
FT_Pos* advance );
|
2000-08-23 19:32:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
#endif /* FTSYNTH_H */
|
2000-08-23 00:53:03 +02:00
|
|
|
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
/* END */
|