Home
last modified time | relevance | path

Searched refs:outPixels (Results 1 – 7 of 7) sorted by relevance

/hardware/google/gfxstream/common/image/
DImageUtils.cpp25 std::vector<uint32_t>* outPixels) { in LoadRGBAFromPng() argument
28 outPixels->clear(); in LoadRGBAFromPng()
45 outPixels->resize(decodedSize, 0); in LoadRGBAFromPng()
46 std::memcpy(outPixels->data(), decodedPixels, decodedSizeBytes); in LoadRGBAFromPng()
/hardware/google/gfxstream/host/
DColorBuffer.cpp167 GLenum pixelsType, void* outPixels) { in readToBytes() argument
172 mColorBufferGl->readPixels(x, y, width, height, pixelsFormat, pixelsType, outPixels); in readToBytes()
178 mColorBufferVk->readToBytes(x, y, width, height, outPixels); in readToBytes()
187 void* outPixels) { in readToBytesScaled() argument
193 pixelsRotation, rect, outPixels); in readToBytesScaled()
201 void ColorBuffer::readYuvToBytes(int x, int y, int width, int height, void* outPixels, in readYuvToBytes() argument
207 mColorBufferGl->readPixelsYUVCached(x, y, width, height, outPixels, pixelsSize); in readYuvToBytes()
213 mColorBufferVk->readToBytes(x, y, width, height, outPixels); in readYuvToBytes()
DColorBuffer.h70 void* outPixels);
72 GLenum pixelsType, int pixelsRotation, Rect rect, void* outPixels);
73 void readYuvToBytes(int x, int y, int width, int height, void* outPixels, uint32_t pixelsSize);
/hardware/google/gfxstream/common/image/include/gfxstream/
DImageUtils.h25 std::vector<uint32_t>* outPixels);
/hardware/google/gfxstream/host/vulkan/
DVkCommonOperations.h506 uint32_t h, void* outPixels);
508 uint32_t h, void* outPixels);
DVkCommonOperations.cpp2422 uint32_t h, void* outPixels) { in readColorBufferToBytes() argument
2429 return readColorBufferToBytesLocked(colorBufferHandle, x, y, w, h, outPixels); in readColorBufferToBytes()
2433 uint32_t h, void* outPixels) { in readColorBufferToBytesLocked() argument
2565 std::memcpy(outPixels, stagingBufferPtr, bufferCopySize); in readColorBufferToBytesLocked()
/hardware/google/gfxstream/common/detector/
DVulkan.cpp498 std::vector<uint8_t> outPixels; in DownloadImage() local
499 outPixels.resize(width * height * 4); in DownloadImage()
501 std::memcpy(outPixels.data(), mapped, outPixels.size()); in DownloadImage()
505 return outPixels; in DownloadImage()