ReactOS 0.4.16-dev-2357-g35d0dfe
ftcolor.h File Reference
Include dependency graph for ftcolor.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  FT_Color_
 
struct  FT_Palette_Data_
 

Macros

#define FT_PALETTE_FOR_LIGHT_BACKGROUND   0x01
 
#define FT_PALETTE_FOR_DARK_BACKGROUND   0x02
 

Typedefs

typedef FT_BEGIN_HEADER struct FT_Color_ FT_Color
 
typedef struct FT_Palette_Data_ FT_Palette_Data
 

Functions

 FT_Palette_Data_Get (FT_Face face, FT_Palette_Data *apalette)
 
 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)
 

Macro Definition Documentation

◆ FT_PALETTE_FOR_DARK_BACKGROUND

#define FT_PALETTE_FOR_DARK_BACKGROUND   0x02

Definition at line 111 of file ftcolor.h.

◆ FT_PALETTE_FOR_LIGHT_BACKGROUND

#define FT_PALETTE_FOR_LIGHT_BACKGROUND   0x01

Definition at line 110 of file ftcolor.h.

Typedef Documentation

◆ FT_Color

◆ FT_Palette_Data

Function Documentation

◆ FT_Palette_Data_Get()

FT_Palette_Data_Get ( FT_Face  face,
FT_Palette_Data apalette 
)

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 }