HomeSort by relevance Sort by last modified time
    Searched defs:pixelBuffer (Results 1 - 8 of 8) sorted by null

  /external/skia/tests/
ARGBImageEncoderTest.cpp 54 char* pixelBuffer = pixelBufferManager.get();
55 SkMemoryWStream out(pixelBuffer, bufferSize);
60 REPORTER_ASSERT(reporter, memcmp(pixelBuffer, comparisonBuffer, bufferSize) == 0);
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglCursor.java 53 IntBuffer pixelBuffer = pixmap.getPixels().asIntBuffer();
54 int[] pixelsRGBA = new int[pixelBuffer.capacity()];
55 pixelBuffer.get(pixelsRGBA);
56 int[] pixelsARGBflipped = new int[pixelBuffer.capacity()];
58 if (pixelBuffer.order() == ByteOrder.BIG_ENDIAN) {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
StatsFilter.java 81 private void calcMeanAndStd(ByteBuffer pixelBuffer, int width, int height, Quad quad) {
83 pixelBuffer.rewind();
84 regionscore(pixelBuffer, width, height, quad.topLeft().x, quad.topLeft().y,
98 ByteBuffer pixelBuffer = inputFrame.lockBytes(Frame.MODE_READ);
100 calcMeanAndStd(pixelBuffer, inputFrame.getWidth(), inputFrame.getHeight(), mCropRect);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SpriteBatchRotationTest.java 34 IntBuffer pixelBuffer;
  /frameworks/base/libs/hwui/font/
Font.cpp 31 #include "../PixelBuffer.h"
212 PixelBuffer* pixelBuffer = cacheTexture->getPixelBuffer();
214 uint32_t formatSize = PixelBuffer::formatSize(pixelBuffer->getFormat());
215 uint32_t alpha_channel_offset = PixelBuffer::formatAlphaOffset(pixelBuffer->getFormat());
221 const uint8_t* cacheBuffer = pixelBuffer->map();
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewAccessTests.cpp 786 tcu::ConstPixelBufferAccess pixelBuffer = resultLevel->getAccess();
789 tcu::IVec4 pixel = pixelBuffer.getPixelInt(i, i);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageSparseResidency.cpp 646 const tcu::ConstPixelBufferAccess pixelBuffer = tcu::ConstPixelBufferAccess(m_format, gridSize.x(), gridSize.y(), gridSize.z(), outputData);
682 const tcu::UVec4 outputValue = pixelBuffer.getPixelUint(offsetX, offsetY, offsetZ);
700 const tcu::UVec4 outputValue = pixelBuffer.getPixelUint(offsetX, offsetY, offsetZ);
722 const tcu::UVec4 outputValue = pixelBuffer.getPixelUint(offsetX, offsetY, offsetZ);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPixelBufferObjectTests.cpp 541 GLuint pixelBuffer = (GLuint)-1;
543 GLU_CHECK_CALL(glGenBuffers(1, &pixelBuffer));
544 GLU_CHECK_CALL(glBindBuffer(GL_PIXEL_PACK_BUFFER, pixelBuffer));
572 GLU_CHECK_CALL(glBindBuffer(GL_PIXEL_PACK_BUFFER, pixelBuffer));
574 GLU_CHECK_CALL(glDeleteBuffers(1, &pixelBuffer));

Completed in 315 milliseconds