Home
last modified time | relevance | path

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

/hardware/google/gfxstream/host/vulkan/
DColorBufferVk.h38 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);
DColorBufferVk.cpp63 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
DBufferVk.h29 bool updateFromBytes(uint64_t offset, uint64_t size, const void* bytes);
DBufferVk.cpp44 bool BufferVk::updateFromBytes(uint64_t offset, uint64_t size, const void* bytes) { in updateFromBytes() function in gfxstream::vk::BufferVk
/hardware/google/gfxstream/host/
DBuffer.cpp123 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()
DColorBuffer.cpp220 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()
DColorBuffer.h75 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,
DBuffer.h59 bool updateFromBytes(uint64_t offset, uint64_t size, const void* bytes);
DFrameBuffer.cpp1623 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()