QtBase  v6.3.1
hb-fallback-shape.cc
Go to the documentation of this file.
1 /*
2  * Copyright © 2011 Google, Inc.
3  *
4  * This is part of HarfBuzz, a text shaping library.
5  *
6  * Permission is hereby granted, without written agreement and without
7  * license or royalty fees, to use, copy, modify, and distribute this
8  * software and its documentation for any purpose, provided that the
9  * above copyright notice and the following two paragraphs appear in
10  * all copies of this software.
11  *
12  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16  * DAMAGE.
17  *
18  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20  * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23  *
24  * Google Author(s): Behdad Esfahbod
25  */
26 
27 #include "hb-shaper-impl.hh"
28 
29 #ifndef HB_NO_FALLBACK_SHAPE
30 
31 /*
32  * shaper face data
33  */
34 
36 
39 {
41 }
42 
43 void
45 {
46 }
47 
48 
49 /*
50  * shaper font data
51  */
52 
54 
57 {
59 }
60 
61 void
63 {
64 }
65 
66 
67 /*
68  * shaper
69  */
70 
73  hb_font_t *font,
75  const hb_feature_t *features HB_UNUSED,
76  unsigned int num_features HB_UNUSED)
77 {
78  /* TODO
79  *
80  * - Apply fallback kern.
81  * - Handle Variation Selectors?
82  * - Apply normalization?
83  *
84  * This will make the fallback shaper into a dumb "TrueType"
85  * shaper which many people unfortunately still request.
86  */
87 
88  hb_codepoint_t space;
89  bool has_space = (bool) font->get_nominal_glyph (' ', &space);
90 
91  buffer->clear_positions ();
92 
93  hb_direction_t direction = buffer->props.direction;
94  hb_unicode_funcs_t *unicode = buffer->unicode;
95  unsigned int count = buffer->len;
96  hb_glyph_info_t *info = buffer->info;
98  for (unsigned int i = 0; i < count; i++)
99  {
100  if (has_space && unicode->is_default_ignorable (info[i].codepoint)) {
101  info[i].codepoint = space;
102  pos[i].x_advance = 0;
103  pos[i].y_advance = 0;
104  continue;
105  }
106  (void) font->get_nominal_glyph (info[i].codepoint, &info[i].codepoint);
107  font->get_glyph_advance_for_direction (info[i].codepoint,
108  direction,
109  &pos[i].x_advance,
110  &pos[i].y_advance);
111  font->subtract_glyph_origin_for_direction (info[i].codepoint,
112  direction,
113  &pos[i].x_offset,
114  &pos[i].y_offset);
115  }
116 
119 
120  buffer->clear_glyph_flags ();
121 
122  return true;
123 }
124 
125 #endif
small capitals from c petite p scientific i
[1]
Definition: afcover.h:80
direction
void hb_buffer_reverse(hb_buffer_t *buffer)
Definition: hb-buffer.cc:1495
void const void *obj HB_UNUSED
Definition: hb-debug.hh:180
hb_fallback_face_data_t * _hb_fallback_shaper_face_data_create(hb_face_t *face HB_UNUSED)
hb_bool_t _hb_fallback_shape(hb_shape_plan_t *shape_plan HB_UNUSED, hb_font_t *font, hb_buffer_t *buffer, const hb_feature_t *features HB_UNUSED, unsigned int num_features HB_UNUSED)
void _hb_fallback_shaper_face_data_destroy(hb_fallback_face_data_t *data HB_UNUSED)
hb_fallback_font_data_t * _hb_fallback_shaper_font_data_create(hb_font_t *font HB_UNUSED)
void _hb_fallback_shaper_font_data_destroy(hb_fallback_font_data_t *data HB_UNUSED)
#define HB_SHAPER_DATA_SUCCEEDED
Definition: hb-shaper.hh:71
backing_store_ptr info
[4]
Definition: jmemsys.h:161
void
Definition: png.h:1080
GLenum GLenum GLsizei count
GLenum face
GLenum GLuint buffer
GLint GLsizei GLsizei GLenum GLenum GLsizei void * data
HB_BEGIN_DECLS typedef int hb_bool_t
Definition: hb-common.h:97
uint32_t hb_codepoint_t
Definition: hb-common.h:106
#define HB_DIRECTION_IS_BACKWARD(dir)
Definition: hb-common.h:288
hb_direction_t
Definition: hb-common.h:229
static hb_bool_t is_default_ignorable(hb_codepoint_t ch)
Definition: hb-unicode.hh:170