Home | History | Annotate | Download | only in opengl

Lines Matching full:bytebuffer

23 import java.nio.ByteBuffer;
85 ByteBuffer decodedData = ByteBuffer.allocateDirect(stride*height)
117 public ETC1Texture(int width, int height, ByteBuffer data) {
139 public ByteBuffer getData() { return mData; }
143 private ByteBuffer mData;
160 ByteBuffer headerBuffer = ByteBuffer.allocateDirect(ETC1.ETC_PKM_HEADER_SIZE)
170 ByteBuffer dataBuffer = ByteBuffer.allocateDirect(encodedSize).order(ByteOrder.nativeOrder());
194 ByteBuffer compressedImage = ByteBuffer.allocateDirect(encodedImageSize).
207 ByteBuffer dataBuffer = texture.getData();
212 ByteBuffer header = ByteBuffer.allocateDirect(ETC1.ETC_PKM_HEADER_SIZE).order(ByteOrder.nativeOrder());