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

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: rebse Created 6 years, 3 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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 /* GL_ROUND_NV */ 893 /* GL_ROUND_NV */
894 #define GR_GL_BEVEL 0x90A6 894 #define GR_GL_BEVEL 0x90A6
895 #define GR_GL_MITER_REVERT 0x90A7 895 #define GR_GL_MITER_REVERT 0x90A7
896 #define GR_GL_MITER_TRUNCATE 0x90A8 896 #define GR_GL_MITER_TRUNCATE 0x90A8
897 897
898 // NV_path_rendering extension to ARB_program_interface_query: 898 // NV_path_rendering extension to ARB_program_interface_query:
899 // .. corresponds to the set of active input variables used by the fragment 899 // .. corresponds to the set of active input variables used by the fragment
900 // shader stage of <program> (if a fragment stage exists). 900 // shader stage of <program> (if a fragment stage exists).
901 #define GR_GL_FRAGMENT_INPUT 0x936D 901 #define GR_GL_FRAGMENT_INPUT 0x936D
902 902
903 // NV_path_rendering extension to EXT_direct_state_access:
904 // [the matrix functions] must support the PATH_PROJECTION_NV and
905 // PATH_MODELVIEW_NV tokens for matrixMode.
906 #define GR_GL_PATH_PROJECTION 0x1701
907 #define GR_GL_PATH_MODELVIEW 0x1700
908
903 /* ARM specific define for MSAA support on framebuffer fetch */ 909 /* ARM specific define for MSAA support on framebuffer fetch */
904 #define GR_GL_FETCH_PER_SAMPLE_ARM 0x8F65 910 #define GR_GL_FETCH_PER_SAMPLE_ARM 0x8F65
905 911
906
907 #endif 912 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698