OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 #ifndef GrGLConfig_chrome_DEFINED | 8 #ifndef GrGLConfig_chrome_DEFINED |
9 #define GrGLConfig_chrome_DEFINED | 9 #define GrGLConfig_chrome_DEFINED |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 // CheckFramebufferStatus in chrome synchronizes the gpu and renderer processes. | 34 // CheckFramebufferStatus in chrome synchronizes the gpu and renderer processes. |
35 #define GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT 1 | 35 #define GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT 1 |
36 | 36 |
37 // Non-VBO vertices and indices are not allowed in Chromium. | 37 // Non-VBO vertices and indices are not allowed in Chromium. |
38 #define GR_GL_MUST_USE_VBO 1 | 38 #define GR_GL_MUST_USE_VBO 1 |
39 | 39 |
40 // Use updated Khronos signature for glShaderSource | 40 // Use updated Khronos signature for glShaderSource |
41 // (const char* const instead of char**). | 41 // (const char* const instead of char**). |
42 #define GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE 1 | 42 #define GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE 1 |
43 | 43 |
| 44 #if !defined(GR_GL_IGNORE_ES3_MSAA) |
| 45 #define GR_GL_IGNORE_ES3_MSAA 1 |
44 #endif | 46 #endif |
| 47 |
| 48 #endif |
OLD | NEW |