| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |