ReactOS 0.4.16-dev-2354-g16de117
ftcolor.c File Reference
Include dependency graph for ftcolor.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

 FT_Palette_Data_Get (FT_Face face, FT_Palette_Data *apalette_data)
 
 FT_Palette_Select (FT_Face face, FT_UShort palette_index, FT_Color **apalette)
 
 FT_Palette_Set_Foreground_Color (FT_Face face, FT_Color foreground_color)
 

Function Documentation

◆ FT_Palette_Data_Get()

FT_Palette_Data_Get ( FT_Face  face,
FT_Palette_Data apalette_data 
)

Definition at line 117 of file ftcolor.c.

119 {
120 FT_UNUSED( face );
121 FT_UNUSED( apalette_data );
122
123
124 return FT_THROW( Unimplemented_Feature );
125 }
#define FT_THROW(e)
Definition: ftdebug.h:243
GLenum GLuint GLint GLenum face
Definition: glext.h:7025
#define FT_UNUSED(arg)

◆ FT_Palette_Select()

FT_Palette_Select ( FT_Face  face,
FT_UShort  palette_index,
FT_Color **  apalette 
)

Definition at line 129 of file ftcolor.c.

132 {
133 FT_UNUSED( face );
134 FT_UNUSED( palette_index );
135 FT_UNUSED( apalette );
136
137
138 return FT_THROW( Unimplemented_Feature );
139 }

◆ FT_Palette_Set_Foreground_Color()

FT_Palette_Set_Foreground_Color ( FT_Face  face,
FT_Color  foreground_color 
)

Definition at line 143 of file ftcolor.c.

145 {
146 FT_UNUSED( face );
147 FT_UNUSED( foreground_color );
148
149
150 return FT_THROW( Unimplemented_Feature );
151 }