summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h')
-rw-r--r--src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h b/src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h
index 6bb84d612d..a1b9cb2225 100644
--- a/src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h
+++ b/src/3rdparty/angle/src/compiler/translator/ExtensionGLSL.h
@@ -12,7 +12,10 @@
#include <set>
#include <string>
-#include "compiler/translator/IntermNode.h"
+#include "compiler/translator/IntermTraverse.h"
+
+namespace sh
+{
// Traverses the intermediate tree to determine which GLSL extensions are required
// to support the shader.
@@ -36,4 +39,6 @@ class TExtensionGLSL : public TIntermTraverser
std::set<std::string> mRequiredExtensions;
};
+} // namespace sh
+
#endif // COMPILER_TRANSLATOR_EXTENSIONGLSL_H_