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

Side by Side Diff: src/gpu/gl/GrGLAssembleGLESInterface.h

Issue 403563002: Add IsPath to GrGLInterface (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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 | « include/gpu/gl/GrGLInterface.h ('k') | src/gpu/gl/GrGLAssembleInterface.cpp » ('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 2014 Google Inc. 3 * Copyright 2014 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 /* This file is meant to be included "inline" the implementation that is using t he function. 9 /* This file is meant to be included "inline" the implementation that is using t he function.
10 * The platform native GL implementation header file should be included before t his file. 10 * The platform native GL implementation header file should be included before t his file.
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 259
260 if (extensions.has("GL_NV_path_rendering")) { 260 if (extensions.has("GL_NV_path_rendering")) {
261 GET_PROC_SUFFIX(MatrixLoadf, EXT); 261 GET_PROC_SUFFIX(MatrixLoadf, EXT);
262 GET_PROC_SUFFIX(MatrixLoadIdentity, EXT); 262 GET_PROC_SUFFIX(MatrixLoadIdentity, EXT);
263 GET_PROC_SUFFIX(PathCommands, NV); 263 GET_PROC_SUFFIX(PathCommands, NV);
264 GET_PROC_SUFFIX(PathCoords, NV); 264 GET_PROC_SUFFIX(PathCoords, NV);
265 GET_PROC_SUFFIX(PathParameteri, NV); 265 GET_PROC_SUFFIX(PathParameteri, NV);
266 GET_PROC_SUFFIX(PathParameterf, NV); 266 GET_PROC_SUFFIX(PathParameterf, NV);
267 GET_PROC_SUFFIX(GenPaths, NV); 267 GET_PROC_SUFFIX(GenPaths, NV);
268 GET_PROC_SUFFIX(DeletePaths, NV); 268 GET_PROC_SUFFIX(DeletePaths, NV);
269 GET_PROC_SUFFIX(IsPath, NV);
269 GET_PROC_SUFFIX(PathStencilFunc, NV); 270 GET_PROC_SUFFIX(PathStencilFunc, NV);
270 GET_PROC_SUFFIX(StencilFillPath, NV); 271 GET_PROC_SUFFIX(StencilFillPath, NV);
271 GET_PROC_SUFFIX(StencilStrokePath, NV); 272 GET_PROC_SUFFIX(StencilStrokePath, NV);
272 GET_PROC_SUFFIX(StencilFillPathInstanced, NV); 273 GET_PROC_SUFFIX(StencilFillPathInstanced, NV);
273 GET_PROC_SUFFIX(StencilStrokePathInstanced, NV); 274 GET_PROC_SUFFIX(StencilStrokePathInstanced, NV);
274 GET_PROC_SUFFIX(CoverFillPath, NV); 275 GET_PROC_SUFFIX(CoverFillPath, NV);
275 GET_PROC_SUFFIX(CoverStrokePath, NV); 276 GET_PROC_SUFFIX(CoverStrokePath, NV);
276 GET_PROC_SUFFIX(CoverFillPathInstanced, NV); 277 GET_PROC_SUFFIX(CoverFillPathInstanced, NV);
277 GET_PROC_SUFFIX(CoverStrokePathInstanced, NV); 278 GET_PROC_SUFFIX(CoverStrokePathInstanced, NV);
278 GET_PROC_SUFFIX(ProgramPathFragmentInputGen, NV); 279 GET_PROC_SUFFIX(ProgramPathFragmentInputGen, NV);
279 } 280 }
280 281
281 interface->fStandard = kGLES_GrGLStandard; 282 interface->fStandard = kGLES_GrGLStandard;
282 interface->fExtensions.swap(&extensions); 283 interface->fExtensions.swap(&extensions);
283 284
284 return interface; 285 return interface;
285 } 286 }
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLInterface.h ('k') | src/gpu/gl/GrGLAssembleInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698