speculative fix for broken android bots : disable gm/fontscaler
git-svn-id: http://skia.googlecode.com/svn/trunk@8037 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
1f19b7f15b
commit
9cd1ef54a6
@ -80,6 +80,14 @@ protected:
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef SK_BUILD_FOR_ANDROID
|
||||
virtual uint32_t onGetFlags() const SK_OVERRIDE {
|
||||
// On android, we fail due to bad gpu drivers (it seems) by adding too
|
||||
// much to our text atlas (texture).
|
||||
return kSkipGPU_Flag;
|
||||
}
|
||||
#endif
|
||||
|
||||
private:
|
||||
typedef GM INHERITED;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user