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

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 for commit 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
« no previous file with comments | « gpu/gpu.gyp ('k') | mojo/gpu/mojo_gles2_impl_autogen.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 // 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 glStencilStrokePathInstancedCHROMIUM; 169 glStencilStrokePathInstancedCHROMIUM;
170 functions->fCoverFillPathInstanced = glCoverFillPathInstancedCHROMIUM; 170 functions->fCoverFillPathInstanced = glCoverFillPathInstancedCHROMIUM;
171 functions->fCoverStrokePathInstanced = glCoverStrokePathInstancedCHROMIUM; 171 functions->fCoverStrokePathInstanced = glCoverStrokePathInstancedCHROMIUM;
172 functions->fStencilThenCoverFillPathInstanced = 172 functions->fStencilThenCoverFillPathInstanced =
173 glStencilThenCoverFillPathInstancedCHROMIUM; 173 glStencilThenCoverFillPathInstancedCHROMIUM;
174 functions->fStencilThenCoverStrokePathInstanced = 174 functions->fStencilThenCoverStrokePathInstanced =
175 glStencilThenCoverStrokePathInstancedCHROMIUM; 175 glStencilThenCoverStrokePathInstancedCHROMIUM;
176 functions->fProgramPathFragmentInputGen = 176 functions->fProgramPathFragmentInputGen =
177 glProgramPathFragmentInputGenCHROMIUM; 177 glProgramPathFragmentInputGenCHROMIUM;
178 functions->fBindFragmentInputLocation = glBindFragmentInputLocationCHROMIUM; 178 functions->fBindFragmentInputLocation = glBindFragmentInputLocationCHROMIUM;
179 functions->fCoverageModulation = glCoverageModulationCHROMIUM;
179 } 180 }
180 181
181 } // namespace skia 182 } // namespace skia
OLDNEW
« no previous file with comments | « gpu/gpu.gyp ('k') | mojo/gpu/mojo_gles2_impl_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698