| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2014 Google Inc. | 3 * Copyright 2014 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 /* This file is meant to be included "inline" the implementation that is using t
he function. | 9 /* This file is meant to be included "inline" the implementation that is using t
he function. |
| 10 * The platform native GL implementation header file should be included before t
his file. | 10 * The platform native GL implementation header file should be included before t
his file. |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 GET_PROC_SUFFIX(IsPath, NV); | 269 GET_PROC_SUFFIX(IsPath, NV); |
| 270 GET_PROC_SUFFIX(PathStencilFunc, NV); | 270 GET_PROC_SUFFIX(PathStencilFunc, NV); |
| 271 GET_PROC_SUFFIX(StencilFillPath, NV); | 271 GET_PROC_SUFFIX(StencilFillPath, NV); |
| 272 GET_PROC_SUFFIX(StencilStrokePath, NV); | 272 GET_PROC_SUFFIX(StencilStrokePath, NV); |
| 273 GET_PROC_SUFFIX(StencilFillPathInstanced, NV); | 273 GET_PROC_SUFFIX(StencilFillPathInstanced, NV); |
| 274 GET_PROC_SUFFIX(StencilStrokePathInstanced, NV); | 274 GET_PROC_SUFFIX(StencilStrokePathInstanced, NV); |
| 275 GET_PROC_SUFFIX(CoverFillPath, NV); | 275 GET_PROC_SUFFIX(CoverFillPath, NV); |
| 276 GET_PROC_SUFFIX(CoverStrokePath, NV); | 276 GET_PROC_SUFFIX(CoverStrokePath, NV); |
| 277 GET_PROC_SUFFIX(CoverFillPathInstanced, NV); | 277 GET_PROC_SUFFIX(CoverFillPathInstanced, NV); |
| 278 GET_PROC_SUFFIX(CoverStrokePathInstanced, NV); | 278 GET_PROC_SUFFIX(CoverStrokePathInstanced, NV); |
| 279 GET_PROC_SUFFIX(StencilThenCoverFillPath, NV); |
| 280 GET_PROC_SUFFIX(StencilThenCoverStrokePath, NV); |
| 281 GET_PROC_SUFFIX(StencilThenCoverFillPathInstanced, NV); |
| 282 GET_PROC_SUFFIX(StencilThenCoverStrokePathInstanced, NV); |
| 279 GET_PROC_SUFFIX(ProgramPathFragmentInputGen, NV); | 283 GET_PROC_SUFFIX(ProgramPathFragmentInputGen, NV); |
| 280 } | 284 } |
| 281 | 285 |
| 282 interface->fStandard = kGLES_GrGLStandard; | 286 interface->fStandard = kGLES_GrGLStandard; |
| 283 interface->fExtensions.swap(&extensions); | 287 interface->fExtensions.swap(&extensions); |
| 284 | 288 |
| 285 return interface; | 289 return interface; |
| 286 } | 290 } |
| OLD | NEW |