@ -1105,6 +1105,9 @@ public final class BufferUtils {
* the input buffer , not null
* the input buffer , not null
* /
* /
public static FloatBuffer ensureLargeEnough ( FloatBuffer buffer , int required ) {
public static FloatBuffer ensureLargeEnough ( FloatBuffer buffer , int required ) {
if ( buffer ! = null ) {
buffer . limit ( buffer . capacity ( ) ) ;
}
if ( buffer = = null | | ( buffer . remaining ( ) < required ) ) {
if ( buffer = = null | | ( buffer . remaining ( ) < required ) ) {
int position = ( buffer ! = null ? buffer . position ( ) : 0 ) ;
int position = ( buffer ! = null ? buffer . position ( ) : 0 ) ;
FloatBuffer newVerts = createFloatBuffer ( position + required ) ;
FloatBuffer newVerts = createFloatBuffer ( position + required ) ;
@ -1119,6 +1122,9 @@ public final class BufferUtils {
}
}
public static ShortBuffer ensureLargeEnough ( ShortBuffer buffer , int required ) {
public static ShortBuffer ensureLargeEnough ( ShortBuffer buffer , int required ) {
if ( buffer ! = null ) {
buffer . limit ( buffer . capacity ( ) ) ;
}
if ( buffer = = null | | ( buffer . remaining ( ) < required ) ) {
if ( buffer = = null | | ( buffer . remaining ( ) < required ) ) {
int position = ( buffer ! = null ? buffer . position ( ) : 0 ) ;
int position = ( buffer ! = null ? buffer . position ( ) : 0 ) ;
ShortBuffer newVerts = createShortBuffer ( position + required ) ;
ShortBuffer newVerts = createShortBuffer ( position + required ) ;
@ -1133,6 +1139,9 @@ public final class BufferUtils {
}
}
public static ByteBuffer ensureLargeEnough ( ByteBuffer buffer , int required ) {
public static ByteBuffer ensureLargeEnough ( ByteBuffer buffer , int required ) {
if ( buffer ! = null ) {
buffer . limit ( buffer . capacity ( ) ) ;
}
if ( buffer = = null | | ( buffer . remaining ( ) < required ) ) {
if ( buffer = = null | | ( buffer . remaining ( ) < required ) ) {
int position = ( buffer ! = null ? buffer . position ( ) : 0 ) ;
int position = ( buffer ! = null ? buffer . position ( ) : 0 ) ;
ByteBuffer newVerts = createByteBuffer ( position + required ) ;
ByteBuffer newVerts = createByteBuffer ( position + required ) ;