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

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

Issue 1451683002: Initial version of external_oes texture support and unit test (Closed) Base URL: https://skia.googlesource.com/skia.git@target
Patch Set: again Created 5 years 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
« no previous file with comments | « src/gpu/gl/GrGLCaps.cpp ('k') | src/gpu/gl/GrGLGpu.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 #define GR_GL_DEBUG_SEVERITY_NOTIFICATION 0x826B 921 #define GR_GL_DEBUG_SEVERITY_NOTIFICATION 0x826B
922 #define GR_GL_STACK_UNDERFLOW 0x0504 922 #define GR_GL_STACK_UNDERFLOW 0x0504
923 #define GR_GL_STACK_OVERFLOW 0x0503 923 #define GR_GL_STACK_OVERFLOW 0x0503
924 #define GR_GL_BUFFER 0x82E0 924 #define GR_GL_BUFFER 0x82E0
925 #define GR_GL_SHADER 0x82E1 925 #define GR_GL_SHADER 0x82E1
926 #define GR_GL_PROGRAM 0x82E2 926 #define GR_GL_PROGRAM 0x82E2
927 #define GR_GL_QUERY 0x82E3 927 #define GR_GL_QUERY 0x82E3
928 #define GR_GL_PROGRAM_PIPELINE 0x82E4 928 #define GR_GL_PROGRAM_PIPELINE 0x82E4
929 #define GR_GL_SAMPLER 0x82E6 929 #define GR_GL_SAMPLER 0x82E6
930 930
931 /* GL_OES_EGL_image_external */
932 #define GR_GL_TEXTURE_EXTERNAL 0x8D65
933
931 /* EGL Defines */ 934 /* EGL Defines */
932 #define GR_EGL_NO_DISPLAY ((GrEGLDisplay)0) 935 #define GR_EGL_NO_DISPLAY ((GrEGLDisplay)0)
933 #define GR_EGL_EXTENSIONS 0x3055 936 #define GR_EGL_EXTENSIONS 0x3055
937 #define GR_EGL_GL_TEXTURE_2D 0x30B1
938 #define GR_EGL_GL_TEXTURE_LEVEL 0x30BC
939 #define GR_EGL_IMAGE_PRESERVED 0x30D2
940 #define GR_EGL_FALSE 0x0
941 #define GR_EGL_TRUE 0x1
942 #define GR_EGL_NONE 0x3038
943 #define GR_EGL_NO_IMAGE ((GrEGLImage)0)
934 944
935 #endif 945 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLCaps.cpp ('k') | src/gpu/gl/GrGLGpu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698