if we can't load Times, use default font
git-svn-id: http://skia.googlecode.com/svn/trunk@9412 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
59ce1377b1
commit
13e1540f8c
@ -27,9 +27,13 @@ public:
|
||||
paint.setAntiAlias(true);
|
||||
paint.setShader(s)->unref();
|
||||
|
||||
SkAutoTUnref<SkTypeface> orig(SkTypeface::CreateFromName("Times",
|
||||
SkTypeface::kBold));
|
||||
SkTypeface* orig = SkTypeface::CreateFromName("Times",
|
||||
SkTypeface::kBold);
|
||||
if (NULL == orig) {
|
||||
orig = SkTypeface::RefDefault();
|
||||
}
|
||||
fColorType = SkNEW_ARGS(SkGTypeface, (orig, paint));
|
||||
orig->unref();
|
||||
}
|
||||
|
||||
virtual ~ColorTypeGM() {
|
||||
|
Loading…
Reference in New Issue
Block a user