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.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/3rdparty/angle/src/compiler/translator/Pragma.h b/src/3rdparty/angle/src/compiler/translator/Pragma.h
index 57b1134970..8c419fc17e 100644
--- a/src/3rdparty/angle/src/compiler/translator/Pragma.h
+++ b/src/3rdparty/angle/src/compiler/translator/Pragma.h
@@ -11,17 +11,16 @@ struct TPragma
{
struct STDGL
{
- STDGL() : invariantAll(false) { }
+ 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) { }
+ TPragma() : optimize(true), debug(false), debugShaderPrecision(true) {}
+ TPragma(bool o, bool d) : optimize(o), debug(d), debugShaderPrecision(true) {}
bool optimize;
bool debug;
@@ -29,4 +28,4 @@ struct TPragma
STDGL stdgl;
};
-#endif // COMPILER_TRANSLATOR_PRAGMA_H_
+#endif // COMPILER_TRANSLATOR_PRAGMA_H_