Skip to content

Commit

Permalink
Update to use sk_sp text blob API (flutter#3024)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejurka authored Sep 13, 2016
1 parent cd333e6 commit 9b320d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/engine/platform/fonts/harfbuzz/FontHarfBuzz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ TextBlobPtr Font::buildTextBlob(const GlyphBuffer& glyphBuffer, float initialAdv
bool success = glyphBuffer.hasOffsets() ?
buildTextBlobInternal<true>(glyphBuffer, advance, builder) :
buildTextBlobInternal<false>(glyphBuffer, advance, builder);
return success ? TextBlobPtr(builder.build()) : nullptr;
return success ? TextBlobPtr(builder.make()) : nullptr;
}


Expand Down

0 comments on commit 9b320d8

Please sign in to comment.