putMatrix static method

void putMatrix(
  1. GMatrix matrix
)

Store a GMatrix in the pool. Remember to not keep any references to the object after moving it to the pool.

Implementation

static void putMatrix(GMatrix matrix) {
  _matrices.add(matrix);
}