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

Side by Side Diff: src/gpu/gl/GrGLCreateNullInterface.cpp

Issue 580863004: Adding 3D lut color filter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: New version 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 #include "gl/GrGLInterface.h" 9 #include "gl/GrGLInterface.h"
10 #include "GrGLDefines.h" 10 #include "GrGLDefines.h"
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 functions->fReadPixels = nullGLReadPixels; 421 functions->fReadPixels = nullGLReadPixels;
422 functions->fScissor = noOpGLScissor; 422 functions->fScissor = noOpGLScissor;
423 functions->fShaderSource = noOpGLShaderSource; 423 functions->fShaderSource = noOpGLShaderSource;
424 functions->fStencilFunc = noOpGLStencilFunc; 424 functions->fStencilFunc = noOpGLStencilFunc;
425 functions->fStencilFuncSeparate = noOpGLStencilFuncSeparate; 425 functions->fStencilFuncSeparate = noOpGLStencilFuncSeparate;
426 functions->fStencilMask = noOpGLStencilMask; 426 functions->fStencilMask = noOpGLStencilMask;
427 functions->fStencilMaskSeparate = noOpGLStencilMaskSeparate; 427 functions->fStencilMaskSeparate = noOpGLStencilMaskSeparate;
428 functions->fStencilOp = noOpGLStencilOp; 428 functions->fStencilOp = noOpGLStencilOp;
429 functions->fStencilOpSeparate = noOpGLStencilOpSeparate; 429 functions->fStencilOpSeparate = noOpGLStencilOpSeparate;
430 functions->fTexImage2D = noOpGLTexImage2D; 430 functions->fTexImage2D = noOpGLTexImage2D;
431 functions->fTexImage3D = noOpGLTexImage3D;
431 functions->fTexParameteri = noOpGLTexParameteri; 432 functions->fTexParameteri = noOpGLTexParameteri;
432 functions->fTexParameteriv = noOpGLTexParameteriv; 433 functions->fTexParameteriv = noOpGLTexParameteriv;
433 functions->fTexSubImage2D = noOpGLTexSubImage2D; 434 functions->fTexSubImage2D = noOpGLTexSubImage2D;
435 functions->fTexSubImage3D = noOpGLTexSubImage3D;
434 functions->fTexStorage2D = noOpGLTexStorage2D; 436 functions->fTexStorage2D = noOpGLTexStorage2D;
435 functions->fDiscardFramebuffer = noOpGLDiscardFramebuffer; 437 functions->fDiscardFramebuffer = noOpGLDiscardFramebuffer;
436 functions->fUniform1f = noOpGLUniform1f; 438 functions->fUniform1f = noOpGLUniform1f;
437 functions->fUniform1i = noOpGLUniform1i; 439 functions->fUniform1i = noOpGLUniform1i;
438 functions->fUniform1fv = noOpGLUniform1fv; 440 functions->fUniform1fv = noOpGLUniform1fv;
439 functions->fUniform1iv = noOpGLUniform1iv; 441 functions->fUniform1iv = noOpGLUniform1iv;
440 functions->fUniform2f = noOpGLUniform2f; 442 functions->fUniform2f = noOpGLUniform2f;
441 functions->fUniform2i = noOpGLUniform2i; 443 functions->fUniform2i = noOpGLUniform2i;
442 functions->fUniform2fv = noOpGLUniform2fv; 444 functions->fUniform2fv = noOpGLUniform2fv;
443 functions->fUniform2iv = noOpGLUniform2iv; 445 functions->fUniform2iv = noOpGLUniform2iv;
(...skipping 29 matching lines...) Expand all
473 functions->fBlitFramebuffer = noOpGLBlitFramebuffer; 475 functions->fBlitFramebuffer = noOpGLBlitFramebuffer;
474 functions->fResolveMultisampleFramebuffer = noOpGLResolveMultisampleFramebuf fer; 476 functions->fResolveMultisampleFramebuffer = noOpGLResolveMultisampleFramebuf fer;
475 functions->fMatrixLoadf = noOpGLMatrixLoadf; 477 functions->fMatrixLoadf = noOpGLMatrixLoadf;
476 functions->fMatrixLoadIdentity = noOpGLMatrixLoadIdentity; 478 functions->fMatrixLoadIdentity = noOpGLMatrixLoadIdentity;
477 functions->fBindFragDataLocationIndexed = noOpGLBindFragDataLocationIndexed; 479 functions->fBindFragDataLocationIndexed = noOpGLBindFragDataLocationIndexed;
478 480
479 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functio ns->fGetStringi, 481 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functio ns->fGetStringi,
480 functions->fGetIntegerv); 482 functions->fGetIntegerv);
481 return interface; 483 return interface;
482 } 484 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698