Hackfut Security File Manager
Current Path:
/usr/include/freetype2/freetype
usr
/
include
/
freetype2
/
freetype
/
π
..
π
config
π
freetype.h
(234.96 KB)
π
ftadvanc.h
(10.1 KB)
π
ftbbox.h
(4.51 KB)
π
ftbdf.h
(6.59 KB)
π
ftbitmap.h
(13.67 KB)
π
ftcache.h
(58.84 KB)
π
ftchapters.h
(7.09 KB)
π
ftcid.h
(5.45 KB)
π
fterrdef.h
(11.56 KB)
π
fterrors.h
(9.23 KB)
π
ftgasp.h
(3.94 KB)
π
ftglyph.h
(38.35 KB)
π
ftgxval.h
(12.3 KB)
π
ftgzip.h
(4.19 KB)
π
ftimage.h
(78.48 KB)
π
ftincrem.h
(10.99 KB)
π
ftlcdfil.h
(6.17 KB)
π
ftlist.h
(16.07 KB)
π
ftlzw.h
(4.16 KB)
π
ftmac.h
(16.7 KB)
π
ftmm.h
(22.18 KB)
π
ftmodapi.h
(23.33 KB)
π
ftmoderr.h
(7.26 KB)
π
ftotval.h
(6.97 KB)
π
ftoutln.h
(31.74 KB)
π
ftpfr.h
(6.14 KB)
π
ftrender.h
(11.14 KB)
π
ftsizes.h
(9.34 KB)
π
ftsnames.h
(9.86 KB)
π
ftstroke.h
(19.09 KB)
π
ftsynth.h
(3.81 KB)
π
ftsystem.h
(9.9 KB)
π
fttrigon.h
(8.25 KB)
π
fttypes.h
(34.16 KB)
π
ftwinfnt.h
(10.16 KB)
π
ftxf86.h
(4.61 KB)
π
t1tables.h
(19.58 KB)
π
ttnameid.h
(60.71 KB)
π
tttables.h
(38.57 KB)
π
tttags.h
(4.88 KB)
π
ttunpat.h
(2.18 KB)
Editing: ftbbox.h
/***************************************************************************/ /* */ /* ftbbox.h */ /* */ /* FreeType exact bbox computation (specification). */ /* */ /* Copyright 1996-2001, 2003, 2007 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. */ /* */ /***************************************************************************/ /*************************************************************************/ /* */ /* This component has a _single_ role: to compute exact outline bounding */ /* boxes. */ /* */ /* It is separated from the rest of the engine for various technical */ /* reasons. It may well be integrated in `ftoutln' later. */ /* */ /*************************************************************************/ #ifndef __FTBBOX_H__ #define __FTBBOX_H__ #include <ft2build.h> #include FT_FREETYPE_H #ifdef FREETYPE_H #error "freetype.h of FreeType 1 has been loaded!" #error "Please fix the directory search order for header files" #error "so that freetype.h of FreeType 2 is found first." #endif FT_BEGIN_HEADER /*************************************************************************/ /* */ /* <Section> */ /* outline_processing */ /* */ /*************************************************************************/ /*************************************************************************/ /* */ /* <Function> */ /* FT_Outline_Get_BBox */ /* */ /* <Description> */ /* Compute the exact bounding box of an outline. This is slower */ /* than computing the control box. However, it uses an advanced */ /* algorithm which returns _very_ quickly when the two boxes */ /* coincide. Otherwise, the outline BΓ©zier arcs are traversed to */ /* extract their extrema. */ /* */ /* <Input> */ /* outline :: A pointer to the source outline. */ /* */ /* <Output> */ /* abbox :: The outline's exact bounding box. */ /* */ /* <Return> */ /* FreeType error code. 0~means success. */ /* */ FT_EXPORT( FT_Error ) FT_Outline_Get_BBox( FT_Outline* outline, FT_BBox *abbox ); /* */ FT_END_HEADER #endif /* __FTBBOX_H__ */ /* END */ /* Local Variables: */ /* coding: utf-8 */ /* End: */
Upload File
Create Folder