HomeSort by relevance Sort by last modified time
    Searched defs:BufferUtils (Results 1 - 25 of 29) sorted by null

1 2

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
BufferUtils.java 8 public class BufferUtils {
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
IndexBufferObject.java 23 import com.badlogic.gdx.utils.BufferUtils;
60 buffer = BufferUtils.newShortBuffer(maxIndices);
71 buffer = BufferUtils.newShortBuffer(maxIndices);
128 BufferUtils.copy(indices, offset, buffer, count);
VertexBufferObject.java 26 import com.badlogic.gdx.utils.BufferUtils;
78 buffer = BufferUtils.newFloatBuffer(this.attributes.vertexSize / 4 * numVertices);
115 BufferUtils.copy(vertices, buffer, count, offset);
126 BufferUtils.copy(vertices, sourceOffset, count, buffer);
VertexBufferObjectWithVAO.java 12 import com.badlogic.gdx.utils.BufferUtils;
36 final static IntBuffer tmpHandle = BufferUtils.newIntBuffer(1);
71 buffer = BufferUtils.newFloatBuffer(this.attributes.vertexSize / 4 * numVertices);
109 BufferUtils.copy(vertices, buffer, count, offset);
120 BufferUtils.copy(vertices, sourceOffset, count, buffer);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
IndexArray.java 22 import com.badlogic.gdx.utils.BufferUtils;
41 byteBuffer = BufferUtils.newUnsafeByteBuffer(maxIndices * 2);
92 BufferUtils.copy(indices, offset, byteBuffer, count);
120 BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
VertexArray.java 25 import com.badlogic.gdx.utils.BufferUtils;
57 byteBuffer = BufferUtils.newUnsafeByteBuffer(this.attributes.vertexSize * numVertices);
65 BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
84 BufferUtils.copy(vertices, byteBuffer, count, offset);
93 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
IndexBufferObject.java 24 import com.badlogic.gdx.utils.BufferUtils;
77 byteBuffer = BufferUtils.newUnsafeByteBuffer(maxIndices * 2);
144 BufferUtils.copy(indices, offset, byteBuffer, count);
196 BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
IndexBufferObjectSubData.java 24 import com.badlogic.gdx.utils.BufferUtils;
61 byteBuffer = BufferUtils.newByteBuffer(maxIndices * 2);
75 byteBuffer = BufferUtils.newByteBuffer(maxIndices * 2);
150 BufferUtils.copy(indices, offset, byteBuffer, count);
VertexBufferObject.java 27 import com.badlogic.gdx.utils.BufferUtils;
80 ByteBuffer data = BufferUtils.newUnsafeByteBuffer(attributes.vertexSize * numVertices);
121 BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
146 BufferUtils.copy(vertices, byteBuffer, count, offset);
157 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
260 if (ownsBuffer) BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
VertexBufferObjectSubData.java 26 import com.badlogic.gdx.utils.BufferUtils;
71 byteBuffer = BufferUtils.newByteBuffer(this.attributes.vertexSize * numVertices);
121 BufferUtils.copy(vertices, byteBuffer, count, offset);
141 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
VertexBufferObjectWithVAO.java 12 import com.badlogic.gdx.utils.BufferUtils;
36 final static IntBuffer tmpHandle = BufferUtils.newIntBuffer(1);
72 byteBuffer = BufferUtils.newUnsafeByteBuffer(this.attributes.vertexSize * numVertices);
112 BufferUtils.copy(vertices, byteBuffer, count, offset);
123 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
256 BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
StreamUtils.java 74 BufferUtils.copy(buffer, 0, output, bytesRead);
BufferUtils.java 35 public final class BufferUtils {
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/
BufferUtils.java 36 public final class BufferUtils {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Model.java 53 import com.badlogic.gdx.utils.BufferUtils;
247 BufferUtils.copy(modelMesh.vertices, mesh.getVerticesBuffer(), modelMesh.vertices.length, 0);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BufferUtilsTest.java 30 import com.badlogic.gdx.utils.BufferUtils;
40 //ByteBuffer bytebuffer = BufferUtils.newUnsafeByteBuffer(1000 * 1000);
41 //BufferUtils.disposeUnsafeByteBuffer(bytebuffer);
43 ByteBuffer bb = BufferUtils.newByteBuffer(8);
44 CharBuffer cb = BufferUtils.newCharBuffer(8);
45 ShortBuffer sb = BufferUtils.newShortBuffer(8);
46 IntBuffer ib = BufferUtils.newIntBuffer(8);
47 LongBuffer lb = BufferUtils.newLongBuffer(8);
48 FloatBuffer fb = BufferUtils.newFloatBuffer(8);
49 DoubleBuffer db = BufferUtils.newDoubleBuffer(8);
    [all...]
VBOWithVAOPerformanceTest.java 36 import com.badlogic.gdx.utils.BufferUtils;
311 final static IntBuffer tmpHandle = BufferUtils.newIntBuffer(1);
332 byteBuffer = BufferUtils.newUnsafeByteBuffer(this.attributes.vertexSize * numVertices);
371 BufferUtils.copy(vertices, byteBuffer, count, offset);
382 BufferUtils.copy(vertices, sourceOffset, count, byteBuffer);
480 BufferUtils.disposeUnsafeByteBuffer(byteBuffer);
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeType.java 27 import com.badlogic.gdx.utils.BufferUtils;
60 BufferUtils.disposeUnsafeByteBuffer(buffer);
74 ByteBuffer buffer = BufferUtils.newUnsafeByteBuffer(data.length);
75 BufferUtils.copy(data, 0, buffer, data.length);
82 BufferUtils.disposeUnsafeByteBuffer(buffer);
126 BufferUtils.disposeUnsafeByteBuffer(buffer);
597 return BufferUtils.newByteBuffer(1);
615 BufferUtils.copy(src, pixmap.getPixels(), pixmap.getPixels().capacity());
FreeTypeFontGenerator.java 48 import com.badlogic.gdx.utils.BufferUtils;
103 buffer = BufferUtils.newUnsafeByteBuffer(data.length);
104 BufferUtils.copy(data, 0, buffer, data.length);
107 buffer = BufferUtils.newUnsafeByteBuffer(fileSize);
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGL20.java 27 import org.lwjgl.BufferUtils;
48 buffer = com.badlogic.gdx.utils.BufferUtils.newByteBuffer(numBytes);
57 com.badlogic.gdx.utils.BufferUtils.copy(v, floatBuffer, count, offset);
64 com.badlogic.gdx.utils.BufferUtils.copy(v, count, offset, intBuffer);
357 IntBuffer typeTmp = BufferUtils.createIntBuffer(2);
366 IntBuffer typeTmp = BufferUtils.createIntBuffer(2);
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwGL20.java 36 buffer = com.badlogic.gdx.utils.BufferUtils.newByteBuffer(numBytes);
45 com.badlogic.gdx.utils.BufferUtils.copy(v, floatBuffer, count, offset);
52 com.badlogic.gdx.utils.BufferUtils.copy(v, count, offset, intBuffer);
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3GL20.java 27 import org.lwjgl.BufferUtils;
44 buffer = com.badlogic.gdx.utils.BufferUtils.newByteBuffer(numBytes);
53 com.badlogic.gdx.utils.BufferUtils.copy(v, floatBuffer, count, offset);
60 com.badlogic.gdx.utils.BufferUtils.copy(v, count, offset, intBuffer);
352 IntBuffer typeTmp = BufferUtils.createIntBuffer(2);
360 IntBuffer typeTmp = BufferUtils.createIntBuffer(2);
  /external/libgdx/backends/gdx-backend-lwjgl3/libs/
lwjgl.jar 
  /external/guice/extensions/persist/lib/
commons-collections.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 

Completed in 2613 milliseconds

1 2