Reduce number of glyphs drawn by fontscaler GM to avoid N4 MSAA4 crash
R=reed@google.com Review URL: https://codereview.chromium.org/23454017 git-svn-id: http://skia.googlecode.com/svn/trunk@11160 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
82d1223aec
commit
4121f9574a
@ -49,7 +49,8 @@ protected:
|
||||
const size_t textLen = strlen(text);
|
||||
|
||||
for (int j = 0; j < 2; ++j) {
|
||||
for (int i = 0; i < 6; ++i) {
|
||||
// This used to do 6 iterations but it causes the N4 to crash in the MSAA4 config.
|
||||
for (int i = 0; i < 5; ++i) {
|
||||
SkScalar x = SkIntToScalar(10);
|
||||
SkScalar y = SkIntToScalar(20);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user