Searched refs:ColorBufferVk (Results 1 – 8 of 8) sorted by relevance
/hardware/google/gfxstream/host/vulkan/ |
D | ColorBufferVk.cpp | 23 std::unique_ptr<ColorBufferVk> ColorBufferVk::create(uint32_t handle, uint32_t width, in create() 37 return std::unique_ptr<ColorBufferVk>(new ColorBufferVk(handle)); in create() 40 void ColorBufferVk::onSave(android::base::Stream* stream) { in onSave() 47 ColorBufferVk::ColorBufferVk(uint32_t handle) : mHandle(handle) {} in ColorBufferVk() function in gfxstream::vk::ColorBufferVk 49 ColorBufferVk::~ColorBufferVk() { in ~ColorBufferVk() 55 bool ColorBufferVk::readToBytes(std::vector<uint8_t>* outBytes) { in readToBytes() 59 bool ColorBufferVk::readToBytes(uint32_t x, uint32_t y, uint32_t w, uint32_t h, void* outBytes) { in readToBytes() 63 bool ColorBufferVk::updateFromBytes(const std::vector<uint8_t>& bytes) { in updateFromBytes() 67 bool ColorBufferVk::updateFromBytes(uint32_t x, uint32_t y, uint32_t w, uint32_t h, in updateFromBytes() 72 bool ColorBufferVk::importExtMemoryHandle(void* nativeResource, uint32_t type, in importExtMemoryHandle()
|
D | ColorBufferVk.h | 26 class ColorBufferVk { 28 static std::unique_ptr<ColorBufferVk> create(uint32_t handle, uint32_t width, uint32_t height, 33 ~ColorBufferVk(); 46 ColorBufferVk(uint32_t handle);
|
D | meson.build | 14 'ColorBufferVk.cpp',
|
D | CMakeLists.txt | 7 ColorBufferVk.cpp
|
D | Android.bp | 45 "ColorBufferVk.cpp",
|
D | BUILD.bazel | 6 "ColorBufferVk.cpp",
|
/hardware/google/gfxstream/host/ |
D | ColorBuffer.h | 41 class ColorBufferVk; variable 132 std::unique_ptr<vk::ColorBufferVk> mColorBufferVk;
|
D | ColorBuffer.cpp | 89 colorBuffer->mColorBufferVk = vk::ColorBufferVk::create( in create()
|