1 /* 2 * Copyright 2024 Google LLC 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #include "GfxStreamVulkanConnection.h" 7 GfxStreamVulkanConnection(gfxstream::guest::IOStream * stream)8GfxStreamVulkanConnection::GfxStreamVulkanConnection(gfxstream::guest::IOStream* stream) { 9 mVkEnc = std::make_unique<gfxstream::vk::VkEncoder>(stream); 10 } 11 ~GfxStreamVulkanConnection()12GfxStreamVulkanConnection::~GfxStreamVulkanConnection() {} 13 getEncoder()14void* GfxStreamVulkanConnection::getEncoder() { return mVkEnc.get(); } 15