/hardware/google/gfxstream/host/vulkan/ |
D | ColorBufferVk.h | 38 bool updateFromBytes(const std::vector<uint8_t>& bytes); 39 bool updateFromBytes(uint32_t x, uint32_t y, uint32_t w, uint32_t h, const void* bytes);
|
D | ColorBufferVk.cpp | 63 bool ColorBufferVk::updateFromBytes(const std::vector<uint8_t>& bytes) { in updateFromBytes() function in gfxstream::vk::ColorBufferVk 67 bool ColorBufferVk::updateFromBytes(uint32_t x, uint32_t y, uint32_t w, uint32_t h, in updateFromBytes() function in gfxstream::vk::ColorBufferVk
|
D | BufferVk.h | 29 bool updateFromBytes(uint64_t offset, uint64_t size, const void* bytes);
|
D | BufferVk.cpp | 44 bool BufferVk::updateFromBytes(uint64_t offset, uint64_t size, const void* bytes) { in updateFromBytes() function in gfxstream::vk::BufferVk
|
/hardware/google/gfxstream/host/ |
D | Buffer.cpp | 123 bool Buffer::updateFromBytes(uint64_t offset, uint64_t size, const void* bytes) { in updateFromBytes() function in gfxstream::Buffer 134 return mBufferVk->updateFromBytes(offset, size, bytes); in updateFromBytes()
|
D | ColorBuffer.cpp | 220 bool ColorBuffer::updateFromBytes(int x, int y, int width, int height, in updateFromBytes() function in gfxstream::ColorBuffer 234 return mColorBufferVk->updateFromBytes(x, y, width, height, pixels); in updateFromBytes() 241 bool ColorBuffer::updateFromBytes(int x, int y, int width, int height, GLenum pixelsFormat, in updateFromBytes() function in gfxstream::ColorBuffer 252 return mColorBufferVk->updateFromBytes(x, y, width, height, pixels); in updateFromBytes() 413 if (!mColorBufferVk->updateFromBytes(contents)) { in invalidateForVk()
|
D | ColorBuffer.h | 75 bool updateFromBytes(int x, int y, int width, int height, GLenum pixelsFormat, 77 bool updateFromBytes(int x, int y, int width, int height, FrameworkFormat frameworkFormat,
|
D | Buffer.h | 59 bool updateFromBytes(uint64_t offset, uint64_t size, const void* bytes);
|
D | FrameBuffer.cpp | 1623 return buffer->updateFromBytes(offset, size, bytes); in updateBuffer() 1646 colorBuffer->updateFromBytes(x, y, width, height, format, type, pixels); in updateColorBuffer() 1667 (*c).second.cb->updateFromBytes(x, y, width, height, fwkFormat, format, type, pixels, metadata); in updateColorBufferFromFrameworkFormat()
|