Merge "Do not compute outside given range in TextLine"
This commit is contained in:
committed by
Android (Google) Code Review
commit
4c4650cb1b
@@ -276,6 +276,7 @@ public class TextLine {
|
||||
final int runCount = mDirections.getRunCount();
|
||||
for (int runIndex = 0; runIndex < runCount; runIndex++) {
|
||||
final int runStart = mDirections.getRunStart(runIndex);
|
||||
if (runStart > mLen) break;
|
||||
final int runLimit = Math.min(runStart + mDirections.getRunLength(runIndex), mLen);
|
||||
final boolean runIsRtl = mDirections.isRunRtl(runIndex);
|
||||
|
||||
@@ -360,6 +361,7 @@ public class TextLine {
|
||||
float h = 0;
|
||||
for (int runIndex = 0; runIndex < mDirections.getRunCount(); runIndex++) {
|
||||
final int runStart = mDirections.getRunStart(runIndex);
|
||||
if (runStart > mLen) break;
|
||||
final int runLimit = Math.min(runStart + mDirections.getRunLength(runIndex), mLen);
|
||||
final boolean runIsRtl = mDirections.isRunRtl(runIndex);
|
||||
|
||||
@@ -417,6 +419,7 @@ public class TextLine {
|
||||
float h = 0;
|
||||
for (int runIndex = 0; runIndex < mDirections.getRunCount(); runIndex++) {
|
||||
final int runStart = mDirections.getRunStart(runIndex);
|
||||
if (runStart > mLen) break;
|
||||
final int runLimit = Math.min(runStart + mDirections.getRunLength(runIndex), mLen);
|
||||
final boolean runIsRtl = mDirections.isRunRtl(runIndex);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user