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

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

Issue 662583003: Add gpu support for glVertexAttrb1f, 2fv, and 3fv (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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/GrGLCreateNullInterface.cpp ('k') | src/gpu/gl/GrGLNoOpInterface.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 #include "gl/GrGLInterface.h" 9 #include "gl/GrGLInterface.h"
10 #include "gl/GrGLExtensions.h" 10 #include "gl/GrGLExtensions.h"
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 NULL == fFunctions.fUniform3fv || 177 NULL == fFunctions.fUniform3fv ||
178 NULL == fFunctions.fUniform3iv || 178 NULL == fFunctions.fUniform3iv ||
179 NULL == fFunctions.fUniform4f || 179 NULL == fFunctions.fUniform4f ||
180 NULL == fFunctions.fUniform4i || 180 NULL == fFunctions.fUniform4i ||
181 NULL == fFunctions.fUniform4fv || 181 NULL == fFunctions.fUniform4fv ||
182 NULL == fFunctions.fUniform4iv || 182 NULL == fFunctions.fUniform4iv ||
183 NULL == fFunctions.fUniformMatrix2fv || 183 NULL == fFunctions.fUniformMatrix2fv ||
184 NULL == fFunctions.fUniformMatrix3fv || 184 NULL == fFunctions.fUniformMatrix3fv ||
185 NULL == fFunctions.fUniformMatrix4fv || 185 NULL == fFunctions.fUniformMatrix4fv ||
186 NULL == fFunctions.fUseProgram || 186 NULL == fFunctions.fUseProgram ||
187 #if 0
188 NULL == fFunctions.fVertexAttrib1f ||
189 NULL == fFunctions.fVertexAttrib2fv ||
190 NULL == fFunctions.fVertexAttrib3fv ||
191 #endif
187 NULL == fFunctions.fVertexAttrib4fv || 192 NULL == fFunctions.fVertexAttrib4fv ||
188 NULL == fFunctions.fVertexAttribPointer || 193 NULL == fFunctions.fVertexAttribPointer ||
189 NULL == fFunctions.fViewport || 194 NULL == fFunctions.fViewport ||
190 NULL == fFunctions.fBindFramebuffer || 195 NULL == fFunctions.fBindFramebuffer ||
191 NULL == fFunctions.fBindRenderbuffer || 196 NULL == fFunctions.fBindRenderbuffer ||
192 NULL == fFunctions.fCheckFramebufferStatus || 197 NULL == fFunctions.fCheckFramebufferStatus ||
193 NULL == fFunctions.fDeleteFramebuffers || 198 NULL == fFunctions.fDeleteFramebuffers ||
194 NULL == fFunctions.fDeleteRenderbuffers || 199 NULL == fFunctions.fDeleteRenderbuffers ||
195 NULL == fFunctions.fFinish || 200 NULL == fFunctions.fFinish ||
196 NULL == fFunctions.fFlush || 201 NULL == fFunctions.fFlush ||
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || 493 NULL == fFunctions.fStencilThenCoverStrokePathInstanced ||
489 NULL == fFunctions.fProgramPathFragmentInputGen || 494 NULL == fFunctions.fProgramPathFragmentInputGen ||
490 NULL == fFunctions.fPathMemoryGlyphIndexArray) { 495 NULL == fFunctions.fPathMemoryGlyphIndexArray) {
491 RETURN_FALSE_INTERFACE 496 RETURN_FALSE_INTERFACE
492 } 497 }
493 } 498 }
494 } 499 }
495 500
496 return true; 501 return true;
497 } 502 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLCreateNullInterface.cpp ('k') | src/gpu/gl/GrGLNoOpInterface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698