Searched refs:outPixels (Results 1 – 7 of 7) sorted by relevance
/hardware/google/gfxstream/common/image/ |
D | ImageUtils.cpp | 25 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/ |
D | ColorBuffer.cpp | 167 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()
|
D | ColorBuffer.h | 70 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/ |
D | ImageUtils.h | 25 std::vector<uint32_t>* outPixels);
|
/hardware/google/gfxstream/host/vulkan/ |
D | VkCommonOperations.h | 506 uint32_t h, void* outPixels); 508 uint32_t h, void* outPixels);
|
D | VkCommonOperations.cpp | 2422 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/ |
D | Vulkan.cpp | 498 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()
|