Add missing braces for r11955.

git-svn-id: http://skia.googlecode.com/svn/trunk@11956 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bungeman@google.com 2013-10-24 21:50:12 +00:00
parent 3c996f8a15
commit 172c363a68

View File

@ -1190,10 +1190,11 @@ int DWriteFontTypeface::onCharsToGlyphs(const void* chars, Encoding encoding,
}
break;
}
case SkTypeface::kUTF32_Encoding:
case SkTypeface::kUTF32_Encoding: {
const UINT32* utf32 = reinterpret_cast<const UINT32*>(chars);
fDWriteFontFace->GetGlyphIndices(utf32, glyphCount, glyphs);
break;
}
default:
SK_CRASH();
}