summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/compiler/translator/OutputESSL.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/compiler/translator/OutputESSL.h
parent37ed6dae00640f9cc980ffda05347c12a7eb5d7e (diff)
parentc7af193d2e49e9f10b86262e63d8d13abf72b5cf (diff)
Merge commit 'dev' into 'wip/cmake-merge'
Diffstat (limited to 'src/3rdparty/angle/src/compiler/translator/OutputESSL.h')
-rw-r--r--src/3rdparty/angle/src/compiler/translator/OutputESSL.h23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/3rdparty/angle/src/compiler/translator/OutputESSL.h b/src/3rdparty/angle/src/compiler/translator/OutputESSL.h
index c5a963499e..e0c7bf2ae6 100644
--- a/src/3rdparty/angle/src/compiler/translator/OutputESSL.h
+++ b/src/3rdparty/angle/src/compiler/translator/OutputESSL.h
@@ -9,22 +9,29 @@
#include "compiler/translator/OutputGLSLBase.h"
+namespace sh
+{
+
class TOutputESSL : public TOutputGLSLBase
{
-public:
- TOutputESSL(TInfoSinkBase& objSink,
+ public:
+ TOutputESSL(TInfoSinkBase &objSink,
ShArrayIndexClampingStrategy clampingStrategy,
ShHashFunction64 hashFunction,
- NameMap& nameMap,
- TSymbolTable& symbolTable,
+ NameMap &nameMap,
+ TSymbolTable *symbolTable,
+ sh::GLenum shaderType,
int shaderVersion,
- bool forceHighp);
+ bool forceHighp,
+ ShCompileOptions compileOptions);
-protected:
- bool writeVariablePrecision(TPrecision precision) override;
+ protected:
+ bool writeVariablePrecision(TPrecision precision) override;
-private:
+ private:
bool mForceHighp;
};
+} // namespace sh
+
#endif // COMPILER_TRANSLATOR_OUTPUTESSL_H_