summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/Compiler.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-04-16 16:32:08 +0200
committerTobias Hunger <tobias.hunger@qt.io>2019-04-16 16:32:08 +0200
commit6630937e63ae5797487b86743a7733c8ae5cc42c (patch)
tree3d53dacf6430f9099e1fb20835881205de674961 /src/3rdparty/angle/src/libANGLE/Compiler.h
parent37ed6dae00640f9cc980ffda05347c12a7eb5d7e (diff)
parentc7af193d2e49e9f10b86262e63d8d13abf72b5cf (diff)
Merge commit 'dev' into 'wip/cmake-merge'
Diffstat (limited to 'src/3rdparty/angle/src/libANGLE/Compiler.h')
-rw-r--r--src/3rdparty/angle/src/libANGLE/Compiler.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/3rdparty/angle/src/libANGLE/Compiler.h b/src/3rdparty/angle/src/libANGLE/Compiler.h
index 8634e39a45..b7f7e9f31b 100644
--- a/src/3rdparty/angle/src/libANGLE/Compiler.h
+++ b/src/3rdparty/angle/src/libANGLE/Compiler.h
@@ -10,38 +10,40 @@
#ifndef LIBANGLE_COMPILER_H_
#define LIBANGLE_COMPILER_H_
-#include "libANGLE/Error.h"
#include "GLSLANG/ShaderLang.h"
+#include "libANGLE/Error.h"
+#include "libANGLE/RefCountObject.h"
namespace rx
{
class CompilerImpl;
-class ImplFactory;
+class GLImplFactory;
}
namespace gl
{
-struct Data;
+class ContextState;
-class Compiler final : angle::NonCopyable
+class Compiler final : public RefCountObjectNoID
{
public:
- Compiler(rx::ImplFactory *implFactory, const Data &data);
- ~Compiler();
-
- Error release();
+ Compiler(rx::GLImplFactory *implFactory, const ContextState &data);
ShHandle getCompilerHandle(GLenum type);
ShShaderOutput getShaderOutputType() const { return mOutputType; }
+ const std::string &getBuiltinResourcesString(GLenum type);
private:
- rx::CompilerImpl *mImplementation;
+ ~Compiler() override;
+ std::unique_ptr<rx::CompilerImpl> mImplementation;
ShShaderSpec mSpec;
ShShaderOutput mOutputType;
ShBuiltInResources mResources;
ShHandle mFragmentCompiler;
ShHandle mVertexCompiler;
+ ShHandle mComputeCompiler;
+ ShHandle mGeometryCompiler;
};
} // namespace gl