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

Side by Side Diff: include/gpu/gl/GrGLInterface.h

Issue 1192663002: Implement support for CHROMIUM_path_rendering pseudo extension (Closed) Base URL: https://skia.googlesource.com/skia.git@chromium-pathrendering-prepare-03
Patch Set: rebase Created 5 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/GrGLFunctions.h ('k') | src/gpu/gl/GrGLCaps.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 * 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 #ifndef GrGLInterface_DEFINED 8 #ifndef GrGLInterface_DEFINED
9 #define GrGLInterface_DEFINED 9 #define GrGLInterface_DEFINED
10 10
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 GLPtr<GrGLCoverStrokePathProc> fCoverStrokePath; 343 GLPtr<GrGLCoverStrokePathProc> fCoverStrokePath;
344 GLPtr<GrGLCoverFillPathInstancedProc> fCoverFillPathInstanced; 344 GLPtr<GrGLCoverFillPathInstancedProc> fCoverFillPathInstanced;
345 GLPtr<GrGLCoverStrokePathInstancedProc> fCoverStrokePathInstanced; 345 GLPtr<GrGLCoverStrokePathInstancedProc> fCoverStrokePathInstanced;
346 // NV_path_rendering v1.2 346 // NV_path_rendering v1.2
347 GLPtr<GrGLStencilThenCoverFillPathProc> fStencilThenCoverFillPath; 347 GLPtr<GrGLStencilThenCoverFillPathProc> fStencilThenCoverFillPath;
348 GLPtr<GrGLStencilThenCoverStrokePathProc> fStencilThenCoverStrokePath; 348 GLPtr<GrGLStencilThenCoverStrokePathProc> fStencilThenCoverStrokePath;
349 GLPtr<GrGLStencilThenCoverFillPathInstancedProc> fStencilThenCoverFillPa thInstanced; 349 GLPtr<GrGLStencilThenCoverFillPathInstancedProc> fStencilThenCoverFillPa thInstanced;
350 GLPtr<GrGLStencilThenCoverStrokePathInstancedProc> fStencilThenCoverStro kePathInstanced; 350 GLPtr<GrGLStencilThenCoverStrokePathInstancedProc> fStencilThenCoverStro kePathInstanced;
351 // NV_path_rendering v1.3 351 // NV_path_rendering v1.3
352 GLPtr<GrGLProgramPathFragmentInputGenProc> fProgramPathFragmentInputGen; 352 GLPtr<GrGLProgramPathFragmentInputGenProc> fProgramPathFragmentInputGen;
353 // CHROMIUM_path_rendering
354 GLPtr<GrGLBindFragmentInputLocationProc> fBindFragmentInputLocation;
353 355
354 /* NV_framebuffer_mixed_samples */ 356 /* NV_framebuffer_mixed_samples */
355 GLPtr<GrGLCoverageModulationProc> fCoverageModulation; 357 GLPtr<GrGLCoverageModulationProc> fCoverageModulation;
356 358
357 /* ARB_draw_instanced */ 359 /* ARB_draw_instanced */
358 GLPtr<GrGLDrawArraysInstancedProc> fDrawArraysInstanced; 360 GLPtr<GrGLDrawArraysInstancedProc> fDrawArraysInstanced;
359 GLPtr<GrGLDrawElementsInstancedProc> fDrawElementsInstanced; 361 GLPtr<GrGLDrawElementsInstancedProc> fDrawElementsInstanced;
360 362
361 /* ARB_instanced_arrays */ 363 /* ARB_instanced_arrays */
362 GLPtr<GrGLVertexAttribDivisorProc> fVertexAttribDivisor; 364 GLPtr<GrGLVertexAttribDivisorProc> fVertexAttribDivisor;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 #if GR_GL_PER_GL_FUNC_CALLBACK 498 #if GR_GL_PER_GL_FUNC_CALLBACK
497 GrGLInterfaceCallbackProc fCallback; 499 GrGLInterfaceCallbackProc fCallback;
498 GrGLInterfaceCallbackData fCallbackData; 500 GrGLInterfaceCallbackData fCallbackData;
499 #endif 501 #endif
500 502
501 // This exists for internal testing. 503 // This exists for internal testing.
502 virtual void abandon() const {} 504 virtual void abandon() const {}
503 }; 505 };
504 506
505 #endif 507 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | src/gpu/gl/GrGLCaps.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698