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

//
// Copyright 2016 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.
//
// FenceNVVk.cpp:
//    Implements the class methods for FenceNVVk.
//

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

#include "common/debug.h"
#include "libANGLE/Context.h"
#include "libANGLE/renderer/vulkan/ContextVk.h"
#include "libANGLE/renderer/vulkan/vk_utils.h"

namespace rx
{

FenceNVVk::FenceNVVk() :{}

FenceNVVk::~FenceNVVk() {}

void FenceNVVk::onDestroy(const gl::Context *context)
{}

angle::Result FenceNVVk::set(const gl::Context *context, GLenum condition)
{}

angle::Result FenceNVVk::test(const gl::Context *context, GLboolean *outFinished)
{}

angle::Result FenceNVVk::finish(const gl::Context *context)
{}

}  // namespace rx