X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fhb-old.cc;h=a7ea8ed9bbe837b83b352afcbfc50e042d240f30;hb=9470543a71d47a3f2c27fc9dbb1e20d03b9cd56e;hp=197e6209366a073c7129623eae8b7c5bca8057e4;hpb=bbb5fd4f2e0d0c8cbdd407a39e58de3b40971c52;p=platform%2Fupstream%2Fharfbuzz.git diff --git a/src/hb-old.cc b/src/hb-old.cc index 197e620..a7ea8ed 100644 --- a/src/hb-old.cc +++ b/src/hb-old.cc @@ -100,7 +100,7 @@ hb_old_convertStringToGlyphIndices (HB_Font old_font, glyphs[i] = u; } - *numGlyphs = length; // XXX + *numGlyphs = length; /* XXX */ return true; } @@ -110,7 +110,7 @@ hb_old_getGlyphAdvances (HB_Font old_font, const HB_Glyph *glyphs, hb_uint32 numGlyphs, HB_Fixed *advances, - int flags /*HB_ShaperFlag*/) + int flags /*HB_ShaperFlag*/ HB_UNUSED) { hb_font_t *font = (hb_font_t *) old_font->userData; @@ -123,7 +123,7 @@ hb_old_canRender (HB_Font old_font, const HB_UChar16 *string, hb_uint32 length) { - return true; // TODO + return true; /* TODO */ } static HB_Error @@ -135,7 +135,7 @@ hb_old_getPointInOutline (HB_Font old_font, HB_Fixed *ypos, hb_uint32 *nPoints) { - return HB_Err_Ok; // TODO + return HB_Err_Ok; /* TODO */ } static void @@ -230,8 +230,8 @@ _hb_old_shaper_font_data_create (hb_font_t *font) data->klass = &hb_old_font_class; data->x_ppem = font->x_ppem; data->y_ppem = font->y_ppem; - data->x_scale = font->x_scale; // XXX - data->y_scale = font->y_scale; // XXX + data->x_scale = font->x_scale; /* XXX */ + data->y_scale = font->y_scale; /* XXX */ data->userData = font; return data; @@ -251,15 +251,15 @@ _hb_old_shaper_font_data_destroy (hb_old_shaper_font_data_t *data) struct hb_old_shaper_shape_plan_data_t {}; hb_old_shaper_shape_plan_data_t * -_hb_old_shaper_shape_plan_data_create (hb_shape_plan_t *shape_plan, - const hb_feature_t *user_features, - unsigned int num_user_features) +_hb_old_shaper_shape_plan_data_create (hb_shape_plan_t *shape_plan HB_UNUSED, + const hb_feature_t *user_features HB_UNUSED, + unsigned int num_user_features HB_UNUSED) { return (hb_old_shaper_shape_plan_data_t *) HB_SHAPER_DATA_SUCCEEDED; } void -_hb_old_shaper_shape_plan_data_destroy (hb_old_shaper_shape_plan_data_t *data) +_hb_old_shaper_shape_plan_data_destroy (hb_old_shaper_shape_plan_data_t *data HB_UNUSED) { } @@ -269,7 +269,7 @@ _hb_old_shaper_shape_plan_data_destroy (hb_old_shaper_shape_plan_data_t *data) */ hb_bool_t -_hb_old_shape (hb_shape_plan_t *shape_plan, +_hb_old_shape (hb_shape_plan_t *shape_plan HB_UNUSED, hb_font_t *font, hb_buffer_t *buffer, const hb_feature_t *features, @@ -337,6 +337,9 @@ retry: ALLOCATE_ARRAY (HB_GlyphAttributes, item.attributes, num_glyphs); ALLOCATE_ARRAY (HB_Fixed, item.advances, num_glyphs); ALLOCATE_ARRAY (HB_FixedPoint, item.offsets, num_glyphs); + /* Apparently in some cases the offsets array will not be fully assigned to. + * Clear it. */ + memset (item.offsets, 0, num_glyphs * sizeof (item.offsets[0])); uint32_t *vis_clusters; ALLOCATE_ARRAY (uint32_t, vis_clusters, num_glyphs); @@ -366,7 +369,7 @@ retry: *p = MIN (*p, buffer->info[i].cluster); } for (unsigned int i = 1; i < num_glyphs; i++) - if (vis_clusters[i] == -1) + if (vis_clusters[i] == (uint32_t) -1) vis_clusters[i] = vis_clusters[i - 1]; #undef utf16_index