Home
last modified time | relevance | path

Searched refs:ColorBufferVk (Results 1 – 8 of 8) sorted by relevance

/hardware/google/gfxstream/host/vulkan/
DColorBufferVk.cpp23 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()
DColorBufferVk.h26 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);
Dmeson.build14 'ColorBufferVk.cpp',
DCMakeLists.txt7 ColorBufferVk.cpp
DAndroid.bp45 "ColorBufferVk.cpp",
DBUILD.bazel6 "ColorBufferVk.cpp",
/hardware/google/gfxstream/host/
DColorBuffer.h41 class ColorBufferVk; variable
132 std::unique_ptr<vk::ColorBufferVk> mColorBufferVk;
DColorBuffer.cpp89 colorBuffer->mColorBufferVk = vk::ColorBufferVk::create( in create()