Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GL_GL_WORKAROUNDS_H_ | |
| 6 #define UI_GL_GL_WORKAROUNDS_H_ | |
| 7 | |
| 8 namespace gl { | |
| 9 | |
| 10 struct GLWorkarounds { | |
| 11 // glClearColor does not always work on Intel 6xxx Mac drivers. See | |
| 12 // crbug.com/710443. | |
| 13 bool clear_to_zero_or_one_broken = false; | |
| 14 }; | |
| 15 | |
| 16 } // namespace gl | |
| 17 | |
| 18 #endif // UI_GL_GL_WORKAROUNDS_H_ | |
| OLD | NEW |