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

Side by Side Diff: gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc

Issue 1218223005: command_buffer: Implement CHROMIUM_framebuffer_mixed_samples extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase, add bogus spec text Created 5 years 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gpu/skia_bindings/gl_bindings_skia_cmd_buffer.h" 5 #include "gpu/skia_bindings/gl_bindings_skia_cmd_buffer.h"
6 6
7 #ifndef GL_GLEXT_PROTOTYPES 7 #ifndef GL_GLEXT_PROTOTYPES
8 #define GL_GLEXT_PROTOTYPES 8 #define GL_GLEXT_PROTOTYPES
9 #endif 9 #endif
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 functions->fCoverFillPathInstanced = glCoverFillPathInstancedCHROMIUM; 174 functions->fCoverFillPathInstanced = glCoverFillPathInstancedCHROMIUM;
175 functions->fCoverStrokePathInstanced = glCoverStrokePathInstancedCHROMIUM; 175 functions->fCoverStrokePathInstanced = glCoverStrokePathInstancedCHROMIUM;
176 functions->fStencilThenCoverFillPathInstanced = 176 functions->fStencilThenCoverFillPathInstanced =
177 glStencilThenCoverFillPathInstancedCHROMIUM; 177 glStencilThenCoverFillPathInstancedCHROMIUM;
178 functions->fStencilThenCoverStrokePathInstanced = 178 functions->fStencilThenCoverStrokePathInstanced =
179 glStencilThenCoverStrokePathInstancedCHROMIUM; 179 glStencilThenCoverStrokePathInstancedCHROMIUM;
180 functions->fProgramPathFragmentInputGen = 180 functions->fProgramPathFragmentInputGen =
181 glProgramPathFragmentInputGenCHROMIUM; 181 glProgramPathFragmentInputGenCHROMIUM;
182 functions->fBindFragmentInputLocation = glBindFragmentInputLocationCHROMIUM; 182 functions->fBindFragmentInputLocation = glBindFragmentInputLocationCHROMIUM;
183 } 183 }
184 functions->fCoverageModulation = glCoverageModulationCHROMIUM;
184 } 185 }
185 186
186 } // namespace skia 187 } // namespace skia
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698