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

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

Issue 14461006: Plumbed in discard_framebuffer extension (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Removed desktop side changes & validation test Created 7 years, 7 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 | Annotate | Revision Log
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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 interface->fStencilFuncSeparate = noOpGLStencilFuncSeparate; 854 interface->fStencilFuncSeparate = noOpGLStencilFuncSeparate;
855 interface->fStencilMask = noOpGLStencilMask; 855 interface->fStencilMask = noOpGLStencilMask;
856 interface->fStencilMaskSeparate = noOpGLStencilMaskSeparate; 856 interface->fStencilMaskSeparate = noOpGLStencilMaskSeparate;
857 interface->fStencilOp = noOpGLStencilOp; 857 interface->fStencilOp = noOpGLStencilOp;
858 interface->fStencilOpSeparate = noOpGLStencilOpSeparate; 858 interface->fStencilOpSeparate = noOpGLStencilOpSeparate;
859 interface->fTexImage2D = noOpGLTexImage2D; 859 interface->fTexImage2D = noOpGLTexImage2D;
860 interface->fTexParameteri = noOpGLTexParameteri; 860 interface->fTexParameteri = noOpGLTexParameteri;
861 interface->fTexParameteriv = noOpGLTexParameteriv; 861 interface->fTexParameteriv = noOpGLTexParameteriv;
862 interface->fTexSubImage2D = noOpGLTexSubImage2D; 862 interface->fTexSubImage2D = noOpGLTexSubImage2D;
863 interface->fTexStorage2D = noOpGLTexStorage2D; 863 interface->fTexStorage2D = noOpGLTexStorage2D;
864 interface->fDiscardFramebuffer = noOpGLDiscardFramebuffer;
864 interface->fUniform1f = noOpGLUniform1f; 865 interface->fUniform1f = noOpGLUniform1f;
865 interface->fUniform1i = noOpGLUniform1i; 866 interface->fUniform1i = noOpGLUniform1i;
866 interface->fUniform1fv = noOpGLUniform1fv; 867 interface->fUniform1fv = noOpGLUniform1fv;
867 interface->fUniform1iv = noOpGLUniform1iv; 868 interface->fUniform1iv = noOpGLUniform1iv;
868 interface->fUniform2f = noOpGLUniform2f; 869 interface->fUniform2f = noOpGLUniform2f;
869 interface->fUniform2i = noOpGLUniform2i; 870 interface->fUniform2i = noOpGLUniform2i;
870 interface->fUniform2fv = noOpGLUniform2fv; 871 interface->fUniform2fv = noOpGLUniform2fv;
871 interface->fUniform2iv = noOpGLUniform2iv; 872 interface->fUniform2iv = noOpGLUniform2iv;
872 interface->fUniform3f = noOpGLUniform3f; 873 interface->fUniform3f = noOpGLUniform3f;
873 interface->fUniform3i = noOpGLUniform3i; 874 interface->fUniform3i = noOpGLUniform3i;
(...skipping 28 matching lines...) Expand all
902 interface->fBlitFramebuffer = noOpGLBlitFramebuffer; 903 interface->fBlitFramebuffer = noOpGLBlitFramebuffer;
903 interface->fResolveMultisampleFramebuffer = 904 interface->fResolveMultisampleFramebuffer =
904 noOpGLResolveMultisampleFramebuffer; 905 noOpGLResolveMultisampleFramebuffer;
905 interface->fMapBuffer = debugGLMapBuffer; 906 interface->fMapBuffer = debugGLMapBuffer;
906 interface->fUnmapBuffer = debugGLUnmapBuffer; 907 interface->fUnmapBuffer = debugGLUnmapBuffer;
907 interface->fBindFragDataLocationIndexed = 908 interface->fBindFragDataLocationIndexed =
908 noOpGLBindFragDataLocationIndexed; 909 noOpGLBindFragDataLocationIndexed;
909 910
910 return interface; 911 return interface;
911 } 912 }
OLDNEW
« no previous file with comments | « src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp ('k') | src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698