alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 1 | // |
| 2 | // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved. |
| 3 | // Use of this source code is governed by a BSD-style license that can be |
| 4 | // found in the LICENSE file. |
| 5 | // |
| 6 | |
Geoff Lang | 0a73dd8 | 2014-11-19 16:18:08 -0500 | [diff] [blame] | 7 | #ifndef COMPILER_TRANSLATOR_PRAGMA_H_ |
| 8 | #define COMPILER_TRANSLATOR_PRAGMA_H_ |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 9 | |
Zhenyao Mo | 94ac7b7 | 2014-10-15 18:22:08 -0700 | [diff] [blame] | 10 | struct TPragma |
| 11 | { |
| 12 | struct STDGL |
| 13 | { |
Jamie Madill | d7b1ab5 | 2016-12-12 14:42:19 -0500 | [diff] [blame] | 14 | STDGL() : invariantAll(false) {} |
Zhenyao Mo | 94ac7b7 | 2014-10-15 18:22:08 -0700 | [diff] [blame] | 15 | |
| 16 | bool invariantAll; |
| 17 | }; |
| 18 | |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 19 | // By default optimization is turned on and debug is turned off. |
Olli Etuaho | 853dc1a | 2014-11-06 17:25:48 +0200 | [diff] [blame] | 20 | // Precision emulation is turned on by default, but has no effect unless |
| 21 | // the extension is enabled. |
Jamie Madill | d7b1ab5 | 2016-12-12 14:42:19 -0500 | [diff] [blame] | 22 | TPragma() : optimize(true), debug(false), debugShaderPrecision(true) {} |
| 23 | TPragma(bool o, bool d) : optimize(o), debug(d), debugShaderPrecision(true) {} |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 24 | |
| 25 | bool optimize; |
| 26 | bool debug; |
Olli Etuaho | 853dc1a | 2014-11-06 17:25:48 +0200 | [diff] [blame] | 27 | bool debugShaderPrecision; |
Zhenyao Mo | 94ac7b7 | 2014-10-15 18:22:08 -0700 | [diff] [blame] | 28 | STDGL stdgl; |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 29 | }; |
| 30 | |
Jamie Madill | d7b1ab5 | 2016-12-12 14:42:19 -0500 | [diff] [blame] | 31 | #endif // COMPILER_TRANSLATOR_PRAGMA_H_ |