chromium/third_party/angle/src/libANGLE/renderer/vulkan/PersistentCommandPool.cpp

//
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// PersistentCommandPool.cpp:
//    Implements the class methods for PersistentCommandPool
//

#include "libANGLE/renderer/vulkan/PersistentCommandPool.h"

namespace rx
{

namespace vk
{

PersistentCommandPool::PersistentCommandPool() {}

PersistentCommandPool::~PersistentCommandPool()
{}

angle::Result PersistentCommandPool::init(Context *context,
                                          ProtectionType protectionType,
                                          uint32_t queueFamilyIndex)
{}

void PersistentCommandPool::destroy(VkDevice device)
{}

angle::Result PersistentCommandPool::allocate(Context *context,
                                              PrimaryCommandBuffer *commandBufferOut)
{}

angle::Result PersistentCommandPool::collect(Context *context, PrimaryCommandBuffer &&buffer)
{}

angle::Result PersistentCommandPool::allocateCommandBuffer(Context *context)
{}

}  // namespace vk

}  // namespace rx