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

  /frameworks/av/cmds/screenrecord/
FrameOutput.h 35 mPixelBuf(NULL)
61 delete[] mPixelBuf;
94 uint8_t* mPixelBuf;
FrameOutput.cpp 82 mPixelBuf = new uint8_t[width * height * kGlBytesPerPixel];
139 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, mPixelBuf);
147 reduceRgbaToRgb(mPixelBuf, width * height);
176 fwrite(mPixelBuf, 1, rgbDataLen, fp);
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayTest.java 103 private final ByteBuffer mPixelBuf = ByteBuffer.allocateDirect(4);
482 GLES20.glReadPixels(x, y, 1, 1, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, mPixelBuf);
483 int r = mPixelBuf.get(0) & 0xff;
484 int g = mPixelBuf.get(1) & 0xff;
485 int b = mPixelBuf.get(2) & 0xff;
EncodeVirtualDisplayWithCompositionTest.java 109 private final ByteBuffer mPixelBuf = ByteBuffer.allocateDirect(4);
380 GLES20.glReadPixels(x, y, 1, 1, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, mPixelBuf);
381 int r = mPixelBuf.get(0) & 0xff;
382 int g = mPixelBuf.get(1) & 0xff;
383 int b = mPixelBuf.get(2) & 0xff;
    [all...]

Completed in 151 milliseconds