Hash :
e09bd5d3
Author :
Date :
2016-11-29T16:20:35
Vulkan: Add display creation, test and extension. With this CL we have the ability to create Vulkan test configs and run basic tests, although the only thing that works is creating a Vulkan Renderer using the extension. BUG=angleproject:1319 Change-Id: I8ad17bba01241334be7da16e68fea38762ca6a20 Reviewed-on: https://chromium-review.googlesource.com/367750 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
//
// 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