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

Method getFloatArray

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

Source from the content-addressed store, hash-verified

2686
2687
2688 protected static void getFloatArray(FloatBuffer buf, float[] arr) {
2689 if (!buf.hasArray() || buf.array() != arr) {
2690 buf.position(0);
2691 buf.get(arr);
2692 buf.rewind();
2693 }
2694 }
2695
2696
2697 protected static void putFloatArray(FloatBuffer buf, float[] arr) {

Callers

nothing calls this directly

Calls 2

getMethod · 0.65
arrayMethod · 0.45

Tested by

no test coverage detected