am 737d3e5d: am 6b96ecca: am 32753f4f: am 31912122: am 6eb28103: am 183f97b7: am 1c12f9e7: malloc some advances

* commit '737d3e5da366124d164555009fa5ee4552143cc8':
  malloc some advances
This commit is contained in:
Victoria Lease
2014-03-19 15:03:28 -07:00
committed by Android Git Automerger

View File

@ -554,7 +554,7 @@ public:
return 0;
}
}
jfloat advancesArray[count];
jfloat* advancesArray = new jfloat[count];
jfloat totalAdvance = 0;
TextLayout::getTextRunAdvances(paint, text, start, count, contextCount, flags,
@ -563,6 +563,7 @@ public:
if (advances != NULL) {
env->SetFloatArrayRegion(advances, advancesIndex, count, advancesArray);
}
delete [] advancesArray;
return totalAdvance;
}