Home | History | Annotate | Download | only in gles11
      1     // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
      2 
      3     /**
      4      * The {@link java.nio.Buffer} instance returned by this method is guaranteed
      5      * to be an instance of {@link java.nio.ByteBuffer}.
      6      */
      7     public static native java.nio.Buffer glGetBufferPointerv(
      8         int target,
      9         int pname
     10     );
     11 
     12