Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Side by Side Diff: src/gpu/gl/GrGLDefines.h

Issue 367643004: Implement NVPR on GLES (Closed) Base URL: https://skia.googlesource.com/skia.git@02-path-program-fragment
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698