Home
last modified time | relevance | path

Searched refs:readToBytes (Results 1 – 9 of 9) sorted by relevance

/hardware/google/gfxstream/host/vulkan/
DColorBufferVk.h35 bool readToBytes(std::vector<uint8_t>* outBytes);
36 bool readToBytes(uint32_t x, uint32_t y, uint32_t w, uint32_t h, void* outBytes);
DColorBufferVk.cpp55 bool ColorBufferVk::readToBytes(std::vector<uint8_t>* outBytes) { in readToBytes() function in gfxstream::vk::ColorBufferVk
59 bool ColorBufferVk::readToBytes(uint32_t x, uint32_t y, uint32_t w, uint32_t h, void* outBytes) { in readToBytes() function in gfxstream::vk::ColorBufferVk
DBufferVk.h27 void readToBytes(uint64_t offset, uint64_t size, void* outBytes);
DBufferVk.cpp40 void BufferVk::readToBytes(uint64_t offset, uint64_t size, void* outBytes) { in readToBytes() function in gfxstream::vk::BufferVk
/hardware/google/gfxstream/host/
DBuffer.cpp105 void Buffer::readToBytes(uint64_t offset, uint64_t size, void* outBytes) { in readToBytes() function in gfxstream::Buffer
116 mBufferVk->readToBytes(offset, size, outBytes); in readToBytes()
DBuffer.h58 void readToBytes(uint64_t offset, uint64_t size, void* outBytes);
DColorBuffer.cpp166 void ColorBuffer::readToBytes(int x, int y, int width, int height, GLenum pixelsFormat, in readToBytes() function in gfxstream::ColorBuffer
178 mColorBufferVk->readToBytes(x, y, width, height, outPixels); in readToBytes()
213 mColorBufferVk->readToBytes(x, y, width, height, outPixels); in readYuvToBytes()
DColorBuffer.h69 void readToBytes(int x, int y, int width, int height, GLenum pixelsFormat, GLenum pixelsType,
DFrameBuffer.cpp1585 buffer->readToBytes(offset, size, bytes); in readBuffer()
1598 colorBuffer->readToBytes(x, y, width, height, format, type, pixels); in readColorBuffer()