ReactOS 0.4.15-dev-7842-g558ab78
ftfntfmt.h File Reference
#include <ft2build.h>
Include dependency graph for ftfntfmt.h:

Go to the source code of this file.

Functions

FT_BEGIN_HEADER FT_Get_Font_Format (FT_Face face)
 
 FT_Get_X11_Font_Format (FT_Face face)
 

Function Documentation

◆ FT_Get_Font_Format()

FT_BEGIN_HEADER FT_Get_Font_Format ( FT_Face  face)

Definition at line 28 of file ftfntfmt.c.

29 {
30 const char* result = NULL;
31
32
33 if ( face )
34 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
35
36 return result;
37 }
#define NULL
Definition: types.h:112
#define FT_FACE_FIND_SERVICE(face, ptr, id)
Definition: ftserv.h:75
GLenum GLuint GLint GLenum face
Definition: glext.h:7025
GLuint64EXT * result
Definition: glext.h:11304

Referenced by FT_Load_Glyph().

◆ FT_Get_X11_Font_Format()

FT_Get_X11_Font_Format ( FT_Face  face)

Definition at line 43 of file ftfntfmt.c.

44 {
45 const char* result = NULL;
46
47
48 if ( face )
49 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
50
51 return result;
52 }