OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |