use of au.gov.asd.tac.constellation.utilities.graphics.FloatArray in project constellation by constellation-app.
the class BlazeBatcher method fillBatch.
private void fillBatch(final VisualAccess access) {
blazeColors = new FloatArray();
blazeInfo = new IntArray();
for (int pos = 0; pos < access.getVertexCount(); pos++) {
bufferBlaze(pos, blazeColors, blazeInfo, access);
}
blazeColors.trimToSize();
blazeInfo.trimToSize();
}
Aggregations