ReactOS 0.4.16-dev-1063-gd722e70
ftcolor.c File Reference
#include <ft2build.h>
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 118 of file ftcolor.c.

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

◆ FT_Palette_Select()

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

Definition at line 130 of file ftcolor.c.

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

◆ FT_Palette_Set_Foreground_Color()

FT_Palette_Set_Foreground_Color ( FT_Face  face,
FT_Color  foreground_color 
)

Definition at line 144 of file ftcolor.c.

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