diff --git a/DEPS b/DEPS index 24a6b2f19f9c374dfd849662b0b91e8da19347b7..75ea9e7c178824a0281c486ce6a9713858e2ff4a 100644 --- a/DEPS +++ b/DEPS @@ -27,7 +27,7 @@ vars = { 'skia_git': 'https://skia.googlesource.com', # OCMock is for testing only so there is no google clone 'ocmock_git': 'https://github.com/erikdoe/ocmock.git', - 'skia_revision': '827dab407ec0d265d3bf10270795e2b0f7309577', + 'skia_revision': 'be1c99658979972e87cad02e9e5b979c190f2c99', # When updating the Dart revision, ensure that all entries that are # dependencies of Dart are also updated to match the entries in the diff --git a/ci/licenses_golden/licenses_skia b/ci/licenses_golden/licenses_skia index 026e49811d3f8f4b83c1112ba35d6dad9c50627d..8ddabad0b998f505fd9e9241a86a64cec95ebadd 100644 --- a/ci/licenses_golden/licenses_skia +++ b/ci/licenses_golden/licenses_skia @@ -1,4 +1,4 @@ -Signature: 1a3ffe9c0973f70c6c3030f478b8c62c +Signature: a7828479031203bb33c11e2d10d73f80 UNUSED LICENSES: diff --git a/third_party/txt/src/skia/paragraph_builder_skia.cc b/third_party/txt/src/skia/paragraph_builder_skia.cc index e17c6391c7953d65ec089f7194e55621c557347c..a2732b593081a937961ea7f41cb8fa2bf066dec5 100644 --- a/third_party/txt/src/skia/paragraph_builder_skia.cc +++ b/third_party/txt/src/skia/paragraph_builder_skia.cc @@ -126,7 +126,7 @@ skt::TextStyle TxtToSkia(const TextStyle& txt) { for (const txt::TextShadow& txt_shadow : txt.text_shadows) { skt::TextShadow shadow; shadow.fOffset = txt_shadow.offset; - shadow.fBlurRadius = txt_shadow.blur_radius; + shadow.fBlurSigma = txt_shadow.blur_radius; shadow.fColor = txt_shadow.color; skia.addShadow(shadow); } diff --git a/third_party/txt/src/skia/paragraph_skia.cc b/third_party/txt/src/skia/paragraph_skia.cc index 4831f8456d7dbb91f163360e3eca4dd9532e9ce7..3b249f09951a8f33154fb78601c56376a5400f17 100644 --- a/third_party/txt/src/skia/paragraph_skia.cc +++ b/third_party/txt/src/skia/paragraph_skia.cc @@ -75,7 +75,7 @@ TextStyle SkiaToTxt(const skt::TextStyle& skia) { for (const skt::TextShadow& skia_shadow : skia.getShadows()) { txt::TextShadow shadow; shadow.offset = skia_shadow.fOffset; - shadow.blur_radius = skia_shadow.fBlurRadius; + shadow.blur_radius = skia_shadow.fBlurSigma; shadow.color = skia_shadow.fColor; txt.text_shadows.emplace_back(shadow); }