blob: f781c070b09846cb6caf17d278523a12d24f0933 [file] [log] [blame]
//
// 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.
//
// CompilerVk.cpp:
// Implements the class methods for CompilerVk.
//
#include "libANGLE/renderer/vulkan/CompilerVk.h"
#include "common/debug.h"
namespace rx
{
CompilerVk::CompilerVk() : CompilerImpl()
{
}
CompilerVk::~CompilerVk()
{
}
gl::Error CompilerVk::release()
{
return gl::NoError();
}
ShShaderOutput CompilerVk::getTranslatorOutputType() const
{
return SH_GLSL_VULKAN_OUTPUT;
}
} // namespace rx