summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/compiler/translator/Pragma.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/compiler/translator/Pragma.h')
-rw-r--r--src/3rdparty/angle/src/compiler/translator/Pragma.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/3rdparty/angle/src/compiler/translator/Pragma.h b/src/3rdparty/angle/src/compiler/translator/Pragma.h
deleted file mode 100644
index 8c419fc17e..0000000000
--- a/src/3rdparty/angle/src/compiler/translator/Pragma.h
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// Copyright (c) 2012 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.
-//
-
-#ifndef COMPILER_TRANSLATOR_PRAGMA_H_
-#define COMPILER_TRANSLATOR_PRAGMA_H_
-
-struct TPragma
-{
- struct STDGL
- {
- STDGL() : invariantAll(false) {}
-
- bool invariantAll;
- };
-
- // By default optimization is turned on and debug is turned off.
- // Precision emulation is turned on by default, but has no effect unless
- // the extension is enabled.
- TPragma() : optimize(true), debug(false), debugShaderPrecision(true) {}
- TPragma(bool o, bool d) : optimize(o), debug(d), debugShaderPrecision(true) {}
-
- bool optimize;
- bool debug;
- bool debugShaderPrecision;
- STDGL stdgl;
-};
-
-#endif // COMPILER_TRANSLATOR_PRAGMA_H_