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

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

Issue 1223673002: Revert of Implement support for CHROMIUM_path_rendering pseudo extension (Closed) Base URL: https://skia.googlesource.com/skia.git@chromium-pathrendering-prepare-03
Patch Set: 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;
355 353
356 /* NV_framebuffer_mixed_samples */ 354 /* NV_framebuffer_mixed_samples */
357 GLPtr<GrGLCoverageModulationProc> fCoverageModulation; 355 GLPtr<GrGLCoverageModulationProc> fCoverageModulation;
358 356
359 /* ARB_draw_instanced */ 357 /* ARB_draw_instanced */
360 GLPtr<GrGLDrawArraysInstancedProc> fDrawArraysInstanced; 358 GLPtr<GrGLDrawArraysInstancedProc> fDrawArraysInstanced;
361 GLPtr<GrGLDrawElementsInstancedProc> fDrawElementsInstanced; 359 GLPtr<GrGLDrawElementsInstancedProc> fDrawElementsInstanced;
362 360
363 /* ARB_instanced_arrays */ 361 /* ARB_instanced_arrays */
364 GLPtr<GrGLVertexAttribDivisorProc> fVertexAttribDivisor; 362 GLPtr<GrGLVertexAttribDivisorProc> fVertexAttribDivisor;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 #if GR_GL_PER_GL_FUNC_CALLBACK 496 #if GR_GL_PER_GL_FUNC_CALLBACK
499 GrGLInterfaceCallbackProc fCallback; 497 GrGLInterfaceCallbackProc fCallback;
500 GrGLInterfaceCallbackData fCallbackData; 498 GrGLInterfaceCallbackData fCallbackData;
501 #endif 499 #endif
502 500
503 // This exists for internal testing. 501 // This exists for internal testing.
504 virtual void abandon() const {} 502 virtual void abandon() const {}
505 }; 503 };
506 504
507 #endif 505 #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