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

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

Issue 993363002: GrGLInterface: Add support for NV_framebuffer_mixed_samples (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase and missing validation Created 5 years, 8 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/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 * 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 GLPtr<GrGLCoverFillPathInstancedProc> fCoverFillPathInstanced; 341 GLPtr<GrGLCoverFillPathInstancedProc> fCoverFillPathInstanced;
342 GLPtr<GrGLCoverStrokePathInstancedProc> fCoverStrokePathInstanced; 342 GLPtr<GrGLCoverStrokePathInstancedProc> fCoverStrokePathInstanced;
343 // NV_path_rendering v1.2 343 // NV_path_rendering v1.2
344 GLPtr<GrGLStencilThenCoverFillPathProc> fStencilThenCoverFillPath; 344 GLPtr<GrGLStencilThenCoverFillPathProc> fStencilThenCoverFillPath;
345 GLPtr<GrGLStencilThenCoverStrokePathProc> fStencilThenCoverStrokePath; 345 GLPtr<GrGLStencilThenCoverStrokePathProc> fStencilThenCoverStrokePath;
346 GLPtr<GrGLStencilThenCoverFillPathInstancedProc> fStencilThenCoverFillPa thInstanced; 346 GLPtr<GrGLStencilThenCoverFillPathInstancedProc> fStencilThenCoverFillPa thInstanced;
347 GLPtr<GrGLStencilThenCoverStrokePathInstancedProc> fStencilThenCoverStro kePathInstanced; 347 GLPtr<GrGLStencilThenCoverStrokePathInstancedProc> fStencilThenCoverStro kePathInstanced;
348 // NV_path_rendering v1.3 348 // NV_path_rendering v1.3
349 GLPtr<GrGLProgramPathFragmentInputGenProc> fProgramPathFragmentInputGen; 349 GLPtr<GrGLProgramPathFragmentInputGenProc> fProgramPathFragmentInputGen;
350 GLPtr<GrGLPathMemoryGlyphIndexArrayProc> fPathMemoryGlyphIndexArray; 350 GLPtr<GrGLPathMemoryGlyphIndexArrayProc> fPathMemoryGlyphIndexArray;
351 // NV_framebuffer_mixed_samples
352 GLPtr<GrGLCoverageModulationProc> fCoverageModulation;
351 } fFunctions; 353 } fFunctions;
352 354
353 // Per-GL func callback 355 // Per-GL func callback
354 #if GR_GL_PER_GL_FUNC_CALLBACK 356 #if GR_GL_PER_GL_FUNC_CALLBACK
355 GrGLInterfaceCallbackProc fCallback; 357 GrGLInterfaceCallbackProc fCallback;
356 GrGLInterfaceCallbackData fCallbackData; 358 GrGLInterfaceCallbackData fCallbackData;
357 #endif 359 #endif
358 360
359 // This exists for internal testing. 361 // This exists for internal testing.
360 virtual void abandon() const {} 362 virtual void abandon() const {}
361 }; 363 };
362 364
363 #endif 365 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | src/gpu/gl/GrGLAssembleInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698