Jamie Madill | 9e54b5a | 2016-05-25 12:57:39 -0400 | [diff] [blame^] | 1 | // |
| 2 | // Copyright 2016 The ANGLE Project Authors. All rights reserved. |
| 3 | // Use of this source code is governed by a BSD-style license that can be |
| 4 | // found in the LICENSE file. |
| 5 | // |
| 6 | // CompilerVk.cpp: |
| 7 | // Implements the class methods for CompilerVk. |
| 8 | // |
| 9 | |
| 10 | #include "libANGLE/renderer/vulkan/CompilerVk.h" |
| 11 | |
| 12 | #include "common/debug.h" |
| 13 | |
| 14 | namespace rx |
| 15 | { |
| 16 | |
| 17 | CompilerVk::CompilerVk() : CompilerImpl() |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | CompilerVk::~CompilerVk() |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | gl::Error CompilerVk::release() |
| 26 | { |
| 27 | UNIMPLEMENTED(); |
| 28 | return gl::Error(GL_INVALID_OPERATION); |
| 29 | } |
| 30 | |
| 31 | ShShaderOutput CompilerVk::getTranslatorOutputType() const |
| 32 | { |
| 33 | UNIMPLEMENTED(); |
| 34 | return ShShaderOutput(); |
| 35 | } |
| 36 | |
| 37 | } // namespace rx |