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 | { |
| 14 | STDGL() : invariantAll(false) { } |
| 15 | |
| 16 | bool invariantAll; |
| 17 | }; |
| 18 | |
| 19 | |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 20 | // By default optimization is turned on and debug is turned off. |
| 21 | TPragma() : optimize(true), debug(false) { } |
| 22 | TPragma(bool o, bool d) : optimize(o), debug(d) { } |
| 23 | |
| 24 | bool optimize; |
| 25 | bool debug; |
Zhenyao Mo | 94ac7b7 | 2014-10-15 18:22:08 -0700 | [diff] [blame] | 26 | STDGL stdgl; |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 27 | }; |
| 28 | |
Geoff Lang | 0a73dd8 | 2014-11-19 16:18:08 -0500 | [diff] [blame^] | 29 | #endif // COMPILER_TRANSLATOR_PRAGMA_H_ |