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