summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/Compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/libANGLE/Compiler.h')
-rw-r--r--src/3rdparty/angle/src/libANGLE/Compiler.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/3rdparty/angle/src/libANGLE/Compiler.h b/src/3rdparty/angle/src/libANGLE/Compiler.h
index 05de15ec97..8634e39a45 100644
--- a/src/3rdparty/angle/src/libANGLE/Compiler.h
+++ b/src/3rdparty/angle/src/libANGLE/Compiler.h
@@ -11,29 +11,39 @@
#define LIBANGLE_COMPILER_H_
#include "libANGLE/Error.h"
+#include "GLSLANG/ShaderLang.h"
namespace rx
{
class CompilerImpl;
+class ImplFactory;
}
namespace gl
{
+struct Data;
-class Compiler final
+class Compiler final : angle::NonCopyable
{
public:
- explicit Compiler(rx::CompilerImpl *impl);
+ Compiler(rx::ImplFactory *implFactory, const Data &data);
~Compiler();
Error release();
- rx::CompilerImpl *getImplementation();
+ ShHandle getCompilerHandle(GLenum type);
+ ShShaderOutput getShaderOutputType() const { return mOutputType; }
private:
- rx::CompilerImpl *mCompiler;
+ rx::CompilerImpl *mImplementation;
+ ShShaderSpec mSpec;
+ ShShaderOutput mOutputType;
+ ShBuiltInResources mResources;
+
+ ShHandle mFragmentCompiler;
+ ShHandle mVertexCompiler;
};
-}
+} // namespace gl
#endif // LIBANGLE_COMPILER_H_