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

Side by Side Diff: src/gpu/gl/debug/GrGLCreateDebugInterface.cpp

Issue 1784063003: Add caps and GL API for buffer texture (Closed) Base URL: https://skia.googlesource.com/skia.git@upload_precision
Patch Set: Created 4 years, 9 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
« no previous file with comments | « src/gpu/gl/SkNullGLContext.cpp ('k') | src/gpu/glsl/GrGLSLCaps.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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #include "gl/GrGLInterface.h" 10 #include "gl/GrGLInterface.h"
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 functions->fReadBuffer = noOpGLReadBuffer; 919 functions->fReadBuffer = noOpGLReadBuffer;
920 functions->fReadPixels = debugGLReadPixels; 920 functions->fReadPixels = debugGLReadPixels;
921 functions->fScissor = noOpGLScissor; 921 functions->fScissor = noOpGLScissor;
922 functions->fShaderSource = noOpGLShaderSource; 922 functions->fShaderSource = noOpGLShaderSource;
923 functions->fStencilFunc = noOpGLStencilFunc; 923 functions->fStencilFunc = noOpGLStencilFunc;
924 functions->fStencilFuncSeparate = noOpGLStencilFuncSeparate; 924 functions->fStencilFuncSeparate = noOpGLStencilFuncSeparate;
925 functions->fStencilMask = noOpGLStencilMask; 925 functions->fStencilMask = noOpGLStencilMask;
926 functions->fStencilMaskSeparate = noOpGLStencilMaskSeparate; 926 functions->fStencilMaskSeparate = noOpGLStencilMaskSeparate;
927 functions->fStencilOp = noOpGLStencilOp; 927 functions->fStencilOp = noOpGLStencilOp;
928 functions->fStencilOpSeparate = noOpGLStencilOpSeparate; 928 functions->fStencilOpSeparate = noOpGLStencilOpSeparate;
929 functions->fTexBuffer = noOpGLTexBuffer;
929 functions->fTexImage2D = noOpGLTexImage2D; 930 functions->fTexImage2D = noOpGLTexImage2D;
930 functions->fTexParameteri = noOpGLTexParameteri; 931 functions->fTexParameteri = noOpGLTexParameteri;
931 functions->fTexParameteriv = noOpGLTexParameteriv; 932 functions->fTexParameteriv = noOpGLTexParameteriv;
932 functions->fTexSubImage2D = noOpGLTexSubImage2D; 933 functions->fTexSubImage2D = noOpGLTexSubImage2D;
933 functions->fTexStorage2D = noOpGLTexStorage2D; 934 functions->fTexStorage2D = noOpGLTexStorage2D;
934 functions->fDiscardFramebuffer = noOpGLDiscardFramebuffer; 935 functions->fDiscardFramebuffer = noOpGLDiscardFramebuffer;
935 functions->fUniform1f = noOpGLUniform1f; 936 functions->fUniform1f = noOpGLUniform1f;
936 functions->fUniform1i = noOpGLUniform1i; 937 functions->fUniform1i = noOpGLUniform1i;
937 functions->fUniform1fv = noOpGLUniform1fv; 938 functions->fUniform1fv = noOpGLUniform1fv;
938 functions->fUniform1iv = noOpGLUniform1iv; 939 functions->fUniform1iv = noOpGLUniform1iv;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 functions->fMatrixLoadIdentity = noOpGLMatrixLoadIdentity; 984 functions->fMatrixLoadIdentity = noOpGLMatrixLoadIdentity;
984 985
985 functions->fBindFragDataLocationIndexed = 986 functions->fBindFragDataLocationIndexed =
986 noOpGLBindFragDataLocationIndexed; 987 noOpGLBindFragDataLocationIndexed;
987 988
988 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functio ns->fGetStringi, 989 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functio ns->fGetStringi,
989 functions->fGetIntegerv, nullptr, GR_EGL_NO_DISP LAY); 990 functions->fGetIntegerv, nullptr, GR_EGL_NO_DISP LAY);
990 991
991 return interface; 992 return interface;
992 } 993 }
OLDNEW
« no previous file with comments | « src/gpu/gl/SkNullGLContext.cpp ('k') | src/gpu/glsl/GrGLSLCaps.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698