MCPcopy Index your code
hub / github.com/libgdx/libgdx / incr

Method incr

gdx/src/com/badlogic/gdx/utils/IntArray.java:140–143  ·  view source on GitHub ↗
(int index, int value)

Source from the content-addressed store, hash-verified

138 }
139
140 public void incr (int index, int value) {
141 if (index >= size) throw new IndexOutOfBoundsException("index can't be >= size: " + index + " >= " + size);
142 items[index] += value;
143 }
144
145 public void incr (int value) {
146 int[] items = this.items;

Callers 2

drawBitmapMethod · 0.45
addMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected