Warning, file /include/harfbuzz/hb-shape.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029 #if !defined(HB_H_IN) && !defined(HB_NO_SINGLE_HEADER_ERROR)
0030 #error "Include <hb.h> instead."
0031 #endif
0032
0033 #ifndef HB_SHAPE_H
0034 #define HB_SHAPE_H
0035
0036 #include "hb-common.h"
0037 #include "hb-buffer.h"
0038 #include "hb-font.h"
0039
0040 HB_BEGIN_DECLS
0041
0042
0043 HB_EXTERN void
0044 hb_shape (hb_font_t *font,
0045 hb_buffer_t *buffer,
0046 const hb_feature_t *features,
0047 unsigned int num_features);
0048
0049 HB_EXTERN hb_bool_t
0050 hb_shape_full (hb_font_t *font,
0051 hb_buffer_t *buffer,
0052 const hb_feature_t *features,
0053 unsigned int num_features,
0054 const char * const *shaper_list);
0055
0056 #ifdef HB_EXPERIMENTAL_API
0057 HB_EXTERN hb_bool_t
0058 hb_shape_justify (hb_font_t *font,
0059 hb_buffer_t *buffer,
0060 const hb_feature_t *features,
0061 unsigned int num_features,
0062 const char * const *shaper_list,
0063 float min_target_advance,
0064 float max_target_advance,
0065 float *advance,
0066 hb_tag_t *var_tag,
0067 float *var_value );
0068 #endif
0069
0070 HB_EXTERN const char **
0071 hb_shape_list_shapers (void);
0072
0073
0074 HB_END_DECLS
0075
0076 #endif