HomeSort by relevance Sort by last modified time
    Searched refs:pixelBuf (Results 1 - 4 of 4) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
PixmapIO.java 91 ByteBuffer pixelBuf = pixmap.getPixels();
92 pixelBuf.position(0);
93 pixelBuf.limit(pixelBuf.capacity());
95 int remainingBytes = pixelBuf.capacity() % BUFFER_SIZE;
96 int iterations = pixelBuf.capacity() / BUFFER_SIZE;
100 pixelBuf.get(writeBuffer);
104 pixelBuf.get(writeBuffer, 0, remainingBytes);
108 pixelBuf.position(0);
109 pixelBuf.limit(pixelBuf.capacity());
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
FramebufferTest.java 91 ByteBuffer pixelBuf = ByteBuffer.allocateDirect(WIDTH * HEIGHT * BYTES_PER_PIXEL);
92 pixelBuf.order(ByteOrder.LITTLE_ENDIAN);
97 pixelBuf.clear();
99 pixelBuf);
101 pixelBuf.position((WIDTH * (HEIGHT / 2) + (WIDTH / 2)) * BYTES_PER_PIXEL);
102 pixelBuf.get(testBytes, 0, 4);
108 pixelBuf.clear();
110 pixelBuf);
112 pixelBuf.position((WIDTH * (HEIGHT / 2) + (WIDTH / 2)) * BYTES_PER_PIXEL);
113 pixelBuf.get(testBytes, 0, 4)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecodeEditEncodeTest.java     [all...]
EncodeDecodeTest.java     [all...]

Completed in 77 milliseconds