| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef GrGLDefines_DEFINED | 10 #ifndef GrGLDefines_DEFINED |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 872 | 872 |
| 873 // NV_path_rendering extension to EXT_direct_state_access: | 873 // NV_path_rendering extension to EXT_direct_state_access: |
| 874 // [the matrix functions] must support the PATH_PROJECTION_NV and | 874 // [the matrix functions] must support the PATH_PROJECTION_NV and |
| 875 // PATH_MODELVIEW_NV tokens for matrixMode. | 875 // PATH_MODELVIEW_NV tokens for matrixMode. |
| 876 #define GR_GL_PATH_PROJECTION 0x1701 | 876 #define GR_GL_PATH_PROJECTION 0x1701 |
| 877 #define GR_GL_PATH_MODELVIEW 0x1700 | 877 #define GR_GL_PATH_MODELVIEW 0x1700 |
| 878 | 878 |
| 879 /* ARM specific define for MSAA support on framebuffer fetch */ | 879 /* ARM specific define for MSAA support on framebuffer fetch */ |
| 880 #define GR_GL_FETCH_PER_SAMPLE_ARM 0x8F65 | 880 #define GR_GL_FETCH_PER_SAMPLE_ARM 0x8F65 |
| 881 | 881 |
| 882 /* GL_EXT_raster_multisample */ |
| 883 #define GR_GL_RASTER_MULTISAMPLE 0x9327 |
| 884 #define GR_GL_RASTER_SAMPLES 0x9328 |
| 885 #define GR_GL_MAX_RASTER_SAMPLES 0x9329 |
| 886 #define GR_GL_RASTER_FIXED_SAMPLE_LOCATIONS 0x932A |
| 887 #define GR_GL_MULTISAMPLE_RASTERIZATION_ALLOWED 0x932B |
| 888 #define GR_GL_EFFECTIVE_RASTER_SAMPLES 0x932C |
| 889 |
| 882 #endif | 890 #endif |
| OLD | NEW |