OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 Google Inc. All rights reserved. | 2 * Copyright (c) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 hb_ot_font_set_funcs(otFont.get()); | 373 hb_ot_font_set_funcs(otFont.get()); |
374 // Creating a sub font means that non-available functions | 374 // Creating a sub font means that non-available functions |
375 // are found from the parent. | 375 // are found from the parent. |
376 hb_font_t* unscaledFont = hb_font_create_sub_font(otFont.get()); | 376 hb_font_t* unscaledFont = hb_font_create_sub_font(otFont.get()); |
377 RefPtr<HbFontCacheEntry> cacheEntry = HbFontCacheEntry::create(unscaledFont); | 377 RefPtr<HbFontCacheEntry> cacheEntry = HbFontCacheEntry::create(unscaledFont); |
378 hb_font_set_funcs(unscaledFont, harfBuzzSkiaGetFontFuncs(), | 378 hb_font_set_funcs(unscaledFont, harfBuzzSkiaGetFontFuncs(), |
379 cacheEntry->hbFontData(), nullptr); | 379 cacheEntry->hbFontData(), nullptr); |
380 return cacheEntry; | 380 return cacheEntry; |
381 } | 381 } |
382 | 382 |
| 383 // TODO: crbug.com/696570 Remove this conditional |
| 384 // once HarfBuzz on CrOS is updated. |
| 385 #if HB_VERSION_ATLEAST(1, 4, 2) |
| 386 static_assert( |
| 387 std::is_same<decltype(SkFontArguments::VariationPosition::Coordinate::axis), |
| 388 decltype(hb_variation_t::tag)>::value && |
| 389 std::is_same< |
| 390 decltype(SkFontArguments::VariationPosition::Coordinate::value), |
| 391 decltype(hb_variation_t::value)>::value && |
| 392 sizeof(SkFontArguments::VariationPosition::Coordinate) == |
| 393 sizeof(hb_variation_t), |
| 394 "Skia and HarfBuzz Variation parameter types must match in structure and " |
| 395 "size."); |
| 396 #endif |
| 397 |
383 hb_font_t* HarfBuzzFace::getScaledFont( | 398 hb_font_t* HarfBuzzFace::getScaledFont( |
384 PassRefPtr<UnicodeRangeSet> rangeSet) const { | 399 PassRefPtr<UnicodeRangeSet> rangeSet) const { |
385 m_platformData->setupPaint(&m_harfBuzzFontData->m_paint); | 400 m_platformData->setupPaint(&m_harfBuzzFontData->m_paint); |
386 m_harfBuzzFontData->m_paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); | 401 m_harfBuzzFontData->m_paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); |
387 m_harfBuzzFontData->m_rangeSet = rangeSet; | 402 m_harfBuzzFontData->m_rangeSet = rangeSet; |
388 m_harfBuzzFontData->updateSimpleFontData(m_platformData); | 403 m_harfBuzzFontData->updateSimpleFontData(m_platformData); |
389 | 404 |
390 ASSERT(m_harfBuzzFontData->m_simpleFontData); | 405 ASSERT(m_harfBuzzFontData->m_simpleFontData); |
391 int scale = SkiaScalarToHarfBuzzPosition(m_platformData->size()); | 406 int scale = SkiaScalarToHarfBuzzPosition(m_platformData->size()); |
392 hb_font_set_scale(m_unscaledFont, scale, scale); | 407 hb_font_set_scale(m_unscaledFont, scale, scale); |
393 | 408 |
394 // TODO: crbug.com/696570 Remove this conditional | 409 // TODO: crbug.com/696570 Remove this conditional |
395 // once HarfBuzz on CrOS is updated. | 410 // once HarfBuzz on CrOS is updated. |
396 #if HB_VERSION_ATLEAST(1, 4, 2) | 411 #if HB_VERSION_ATLEAST(1, 4, 2) |
397 SkTypeface* typeface = m_harfBuzzFontData->m_paint.getTypeface(); | 412 SkTypeface* typeface = m_harfBuzzFontData->m_paint.getTypeface(); |
398 int axisCount = typeface->getVariationDesignPosition(nullptr, 0); | 413 int axisCount = typeface->getVariationDesignPosition(nullptr, 0); |
399 if (axisCount > 0) { | 414 if (axisCount > 0) { |
400 Vector<SkFontArguments::VariationPosition::Coordinate> axisValues; | 415 Vector<SkFontArguments::VariationPosition::Coordinate> axisValues; |
401 axisValues.resize(axisCount); | 416 axisValues.resize(axisCount); |
402 typeface->getVariationDesignPosition(axisValues.data(), axisValues.size()); | 417 if (typeface->getVariationDesignPosition(axisValues.data(), |
403 Vector<float> axisValuesFloat; | 418 axisValues.size()) > 0) { |
404 axisValuesFloat.resize(axisCount); | 419 hb_font_set_variations( |
405 for (size_t i = 0; i < axisValues.size(); i++) { | 420 m_unscaledFont, reinterpret_cast<hb_variation_t*>(axisValues.data()), |
406 axisValuesFloat[i] = axisValues[i].value; | 421 axisValues.size()); |
407 } | 422 } |
408 hb_font_set_var_coords_design(m_unscaledFont, axisValuesFloat.data(), | |
409 axisValuesFloat.size()); | |
410 } | 423 } |
411 #endif | 424 #endif |
412 | 425 |
413 return m_unscaledFont; | 426 return m_unscaledFont; |
414 } | 427 } |
415 | 428 |
416 } // namespace blink | 429 } // namespace blink |
OLD | NEW |