pango_renderer.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef PANGO_RENDERER_H
00028 #define PANGO_RENDERER_H
00029
00030 #include <pango/pango.h>
00031 #include <pango/pangoft2.h>
00032
00033 #include <ft2build.h>
00034 #include FT_FREETYPE_H
00035 #include FT_GLYPH_H
00036
00037 #define PANGO_GLYPH_EMPTY ((PangoGlyph)0x0FFFFFFF)
00038
00039
00040 void render_single_line(unsigned char *bmp,
00041 PangoLayoutLine *pango_line,
00042 unsigned int font_hash_code,
00043 int x,
00044 int y,
00045 const int width);
00046
00047
00048 void render_single_glyph(unsigned char *bmp,
00049 int x,
00050 int y,
00051 const int width,
00052 const FT_BitmapGlyph glyph);
00053
00054 #endif