| 105 | } |
| 106 | |
| 107 | std::shared_ptr<device_buffer> device_context::wrap_buffer(const device_queue&, vulkan_buffer&, const MEMORY_FLAG) const { |
| 108 | log_error("Vulkan buffer sharing is not supported by this backend"); |
| 109 | return {}; |
| 110 | } |
| 111 | |
| 112 | std::shared_ptr<device_image> device_context::wrap_image(const device_queue&, vulkan_image&, const MEMORY_FLAG) const { |
| 113 | log_error("Vulkan image sharing is not supported by this backend"); |
nothing calls this directly
no outgoing calls
no test coverage detected