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

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

Issue 1531493002: Avoid pixel GPU readback in saveLayerWithPickup (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Quiet compiler complaints 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/core/SkCanvas.cpp ('k') | src/gpu/gl/GrGLUtil.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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 #define GR_GL_COLOR_ATTACHMENT0 0x8CE0 813 #define GR_GL_COLOR_ATTACHMENT0 0x8CE0
814 #define GR_GL_DEPTH_ATTACHMENT 0x8D00 814 #define GR_GL_DEPTH_ATTACHMENT 0x8D00
815 #define GR_GL_STENCIL_ATTACHMENT 0x8D20 815 #define GR_GL_STENCIL_ATTACHMENT 0x8D20
816 816
817 // GL_EXT_discard_framebuffer 817 // GL_EXT_discard_framebuffer
818 #define GR_GL_COLOR 0x1800 818 #define GR_GL_COLOR 0x1800
819 #define GR_GL_DEPTH 0x1801 819 #define GR_GL_DEPTH 0x1801
820 #define GR_GL_STENCIL 0x1802 820 #define GR_GL_STENCIL 0x1802
821 821
822 #define GR_GL_NONE 0 822 #define GR_GL_NONE 0
823 #define GR_GL_FRAMEBUFFER_DEFAULT 0x8218
823 824
824 #define GR_GL_FRAMEBUFFER_COMPLETE 0x8CD5 825 #define GR_GL_FRAMEBUFFER_COMPLETE 0x8CD5
825 #define GR_GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 826 #define GR_GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6
826 #define GR_GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 827 #define GR_GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7
827 #define GR_GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 828 #define GR_GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9
828 #define GR_GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD 829 #define GR_GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD
829 830
830 #define GR_GL_FRAMEBUFFER_BINDING 0x8CA6 831 #define GR_GL_FRAMEBUFFER_BINDING 0x8CA6
831 #define GR_GL_RENDERBUFFER_BINDING 0x8CA7 832 #define GR_GL_RENDERBUFFER_BINDING 0x8CA7
832 #define GR_GL_MAX_RENDERBUFFER_SIZE 0x84E8 833 #define GR_GL_MAX_RENDERBUFFER_SIZE 0x84E8
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 #define GR_EGL_EXTENSIONS 0x3055 944 #define GR_EGL_EXTENSIONS 0x3055
944 #define GR_EGL_GL_TEXTURE_2D 0x30B1 945 #define GR_EGL_GL_TEXTURE_2D 0x30B1
945 #define GR_EGL_GL_TEXTURE_LEVEL 0x30BC 946 #define GR_EGL_GL_TEXTURE_LEVEL 0x30BC
946 #define GR_EGL_IMAGE_PRESERVED 0x30D2 947 #define GR_EGL_IMAGE_PRESERVED 0x30D2
947 #define GR_EGL_FALSE 0x0 948 #define GR_EGL_FALSE 0x0
948 #define GR_EGL_TRUE 0x1 949 #define GR_EGL_TRUE 0x1
949 #define GR_EGL_NONE 0x3038 950 #define GR_EGL_NONE 0x3038
950 #define GR_EGL_NO_IMAGE ((GrEGLImage)0) 951 #define GR_EGL_NO_IMAGE ((GrEGLImage)0)
951 952
952 #endif 953 #endif
OLDNEW
« no previous file with comments | « src/core/SkCanvas.cpp ('k') | src/gpu/gl/GrGLUtil.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698