MCPcopy Index your code
hub / github.com/benfry/processing4 / putFloatArray

Method putFloatArray

core/src/processing/opengl/PGL.java:2697–2703  ·  view source on GitHub ↗
(FloatBuffer buf, float[] arr)

Source from the content-addressed store, hash-verified

2695
2696
2697 protected static void putFloatArray(FloatBuffer buf, float[] arr) {
2698 if (!buf.hasArray() || buf.array() != arr) {
2699 buf.position(0);
2700 buf.put(arr);
2701 buf.rewind();
2702 }
2703 }
2704
2705
2706 protected static void fillFloatBuffer(FloatBuffer buf, int i0, int i1,

Callers

nothing calls this directly

Calls 2

arrayMethod · 0.45
putMethod · 0.45

Tested by

no test coverage detected