2000-08-23 13:22:30 +02:00
|
|
|
#ifndef FTCIMAGE_H
|
|
|
|
#define FTCIMAGE_H
|
|
|
|
|
2000-09-19 03:11:11 +02:00
|
|
|
#include <freetype/cache/ftcglyph.h>
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-09-19 03:11:11 +02:00
|
|
|
/* the glyph image queue type */
|
|
|
|
typedef struct FTC_Image_QueueRec_
|
2000-08-23 13:22:30 +02:00
|
|
|
{
|
2000-09-19 03:11:11 +02:00
|
|
|
FTC_Glyph_QueueRec root;
|
|
|
|
FTC_Image_Desc description;
|
|
|
|
|
|
|
|
} FTC_Image_QueueRec, *FTC_Image_Queue;
|
2000-08-23 23:11:13 +02:00
|
|
|
|
2000-09-19 03:11:11 +02:00
|
|
|
typedef struct FTC_Image_CacheRec_
|
2000-08-23 13:22:30 +02:00
|
|
|
{
|
2000-09-19 03:11:11 +02:00
|
|
|
FTC_Glyph_CacheRec root;
|
2000-08-23 13:22:30 +02:00
|
|
|
|
2000-08-23 23:11:13 +02:00
|
|
|
} FTC_Image_CacheRec;
|
2000-08-23 13:22:30 +02:00
|
|
|
|
|
|
|
#endif /* FTCIMAGE_H */
|
2000-08-23 19:32:42 +02:00
|
|
|
|