Merge change I51438c18 into eclair-mr2

* changes:
  the vertex index should be "first + i".
This commit is contained in:
Android (Google) Code Review
2009-12-02 21:17:57 -08:00

View File

@@ -1517,7 +1517,7 @@ class GLLogWrapper extends GLWrapperBase {
arg("count", count); arg("count", count);
startLogIndices(); startLogIndices();
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
doElement(mStringBuilder, i, first + count); doElement(mStringBuilder, i, first + i);
} }
endLogIndices(); endLogIndices();
end(); end();