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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 /* GL_ROUND_NV */ | 892 /* GL_ROUND_NV */ |
893 #define GR_GL_BEVEL 0x90A6 | 893 #define GR_GL_BEVEL 0x90A6 |
894 #define GR_GL_MITER_REVERT 0x90A7 | 894 #define GR_GL_MITER_REVERT 0x90A7 |
895 #define GR_GL_MITER_TRUNCATE 0x90A8 | 895 #define GR_GL_MITER_TRUNCATE 0x90A8 |
896 | 896 |
897 // NV_path_rendering extension to ARB_program_interface_query: | 897 // NV_path_rendering extension to ARB_program_interface_query: |
898 // .. corresponds to the set of active input variables used by the fragment | 898 // .. corresponds to the set of active input variables used by the fragment |
899 // shader stage of <program> (if a fragment stage exists). | 899 // shader stage of <program> (if a fragment stage exists). |
900 #define GR_GL_FRAGMENT_INPUT 0x936D | 900 #define GR_GL_FRAGMENT_INPUT 0x936D |
901 | 901 |
| 902 // NV_path_rendering extension to EXT_direct_state_access: |
| 903 // [the matrix functions] must support the PATH_PROJECTION_NV and |
| 904 // PATH_MODELVIEW_NV tokens for matrixMode. |
| 905 #define GR_GL_PATH_PROJECTION 0x1701 |
902 #endif | 906 #endif |
OLD | NEW |