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

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

Issue 1176113008: Stop using the NVPR glyph loading functionality (Closed) Base URL: https://skia.googlesource.com/skia.git@chromium-pathrendering-prepare-01-for-fragment-bind
Patch Set: Created 5 years, 6 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/GrPathRendering.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 #ifndef GrGLInterface_DEFINED 8 #ifndef GrGLInterface_DEFINED
9 #define GrGLInterface_DEFINED 9 #define GrGLInterface_DEFINED
10 10
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 GLPtr<GrGLCoverStrokePathProc> fCoverStrokePath; 342 GLPtr<GrGLCoverStrokePathProc> fCoverStrokePath;
343 GLPtr<GrGLCoverFillPathInstancedProc> fCoverFillPathInstanced; 343 GLPtr<GrGLCoverFillPathInstancedProc> fCoverFillPathInstanced;
344 GLPtr<GrGLCoverStrokePathInstancedProc> fCoverStrokePathInstanced; 344 GLPtr<GrGLCoverStrokePathInstancedProc> fCoverStrokePathInstanced;
345 // NV_path_rendering v1.2 345 // NV_path_rendering v1.2
346 GLPtr<GrGLStencilThenCoverFillPathProc> fStencilThenCoverFillPath; 346 GLPtr<GrGLStencilThenCoverFillPathProc> fStencilThenCoverFillPath;
347 GLPtr<GrGLStencilThenCoverStrokePathProc> fStencilThenCoverStrokePath; 347 GLPtr<GrGLStencilThenCoverStrokePathProc> fStencilThenCoverStrokePath;
348 GLPtr<GrGLStencilThenCoverFillPathInstancedProc> fStencilThenCoverFillPa thInstanced; 348 GLPtr<GrGLStencilThenCoverFillPathInstancedProc> fStencilThenCoverFillPa thInstanced;
349 GLPtr<GrGLStencilThenCoverStrokePathInstancedProc> fStencilThenCoverStro kePathInstanced; 349 GLPtr<GrGLStencilThenCoverStrokePathInstancedProc> fStencilThenCoverStro kePathInstanced;
350 // NV_path_rendering v1.3 350 // NV_path_rendering v1.3
351 GLPtr<GrGLProgramPathFragmentInputGenProc> fProgramPathFragmentInputGen; 351 GLPtr<GrGLProgramPathFragmentInputGenProc> fProgramPathFragmentInputGen;
352 GLPtr<GrGLPathMemoryGlyphIndexArrayProc> fPathMemoryGlyphIndexArray;
353 352
354 /* NV_framebuffer_mixed_samples */ 353 /* NV_framebuffer_mixed_samples */
355 GLPtr<GrGLCoverageModulationProc> fCoverageModulation; 354 GLPtr<GrGLCoverageModulationProc> fCoverageModulation;
356 355
357 /* ARB_draw_instanced */ 356 /* ARB_draw_instanced */
358 GLPtr<GrGLDrawArraysInstancedProc> fDrawArraysInstanced; 357 GLPtr<GrGLDrawArraysInstancedProc> fDrawArraysInstanced;
359 GLPtr<GrGLDrawElementsInstancedProc> fDrawElementsInstanced; 358 GLPtr<GrGLDrawElementsInstancedProc> fDrawElementsInstanced;
360 359
361 /* ARB_instanced_arrays */ 360 /* ARB_instanced_arrays */
362 GLPtr<GrGLVertexAttribDivisorProc> fVertexAttribDivisor; 361 GLPtr<GrGLVertexAttribDivisorProc> fVertexAttribDivisor;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 #if GR_GL_PER_GL_FUNC_CALLBACK 495 #if GR_GL_PER_GL_FUNC_CALLBACK
497 GrGLInterfaceCallbackProc fCallback; 496 GrGLInterfaceCallbackProc fCallback;
498 GrGLInterfaceCallbackData fCallbackData; 497 GrGLInterfaceCallbackData fCallbackData;
499 #endif 498 #endif
500 499
501 // This exists for internal testing. 500 // This exists for internal testing.
502 virtual void abandon() const {} 501 virtual void abandon() const {}
503 }; 502 };
504 503
505 #endif 504 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | src/gpu/GrPathRendering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698