Skip to content

Instantly share code, notes, and snippets.

View hpp's full-sized avatar

Joe Walter hpp

View GitHub Profile
@hpp
hpp / TransformFeedback.java
Last active August 22, 2020 07:25
Example of Android implementation of Transform Feedback in OpenGLES 3.0 and glMapBufferRange to read out data.
import android.opengl.GLES30;
import android.util.Log;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
/**
* Created by izzy on 6/24/15. TransformFeedback is a example of how