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

Commit 2b3509c9 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I51438c18 into eclair-mr2

* changes:
  the vertex index should be "first + i".
parents 1b04daf9 51438c18
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();