Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0648422f authored by Android Code Review's avatar Android Code Review
Browse files

Merge change 10840

* changes:
  the vertex index should be "first + i".
parents 46ba1c96 219749df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1517,7 +1517,7 @@ class GLLogWrapper extends GLWrapperBase {
        arg("count", count);
        startLogIndices();
        for (int i = 0; i < count; i++) {
            doElement(mStringBuilder, i, first + count);
            doElement(mStringBuilder, i, first + i);
        }
        endLogIndices();
        end();