diff options
Diffstat (limited to 'gfx/angle/src/libANGLE/renderer/null/ShaderNULL.cpp')
-rw-r--r-- | gfx/angle/src/libANGLE/renderer/null/ShaderNULL.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gfx/angle/src/libANGLE/renderer/null/ShaderNULL.cpp b/gfx/angle/src/libANGLE/renderer/null/ShaderNULL.cpp new file mode 100644 index 000000000..168f4bdca --- /dev/null +++ b/gfx/angle/src/libANGLE/renderer/null/ShaderNULL.cpp @@ -0,0 +1,44 @@ +// +// 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. +// +// ShaderNULL.cpp: +// Implements the class methods for ShaderNULL. +// + +#include "libANGLE/renderer/null/ShaderNULL.h" + +#include "common/debug.h" + +namespace rx +{ + +ShaderNULL::ShaderNULL(const gl::ShaderState &data) : ShaderImpl(data) +{ +} + +ShaderNULL::~ShaderNULL() +{ +} + +ShCompileOptions ShaderNULL::prepareSourceAndReturnOptions(std::stringstream *sourceStream, + std::string *sourcePath) +{ + UNIMPLEMENTED(); + return ShCompileOptions(); +} + +bool ShaderNULL::postTranslateCompile(gl::Compiler *compiler, std::string *infoLog) +{ + UNIMPLEMENTED(); + return bool(); +} + +std::string ShaderNULL::getDebugInfo() const +{ + UNIMPLEMENTED(); + return std::string(); +} + +} // namespace rx |