ReactOS 0.4.16-dev-2332-g4cba65d
ftfntfmt.h File Reference
Include dependency graph for ftfntfmt.h:
This graph shows which files directly or indirectly include this file:

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 27 of file ftfntfmt.c.

28 {
29 const char* result = NULL;
30
31
32 if ( face )
33 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
34
35 return result;
36 }
#define NULL
Definition: types.h:112
#define FT_FACE_FIND_SERVICE(face, ptr, id)
Definition: ftserv.h:77
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 42 of file ftfntfmt.c.

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