OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 GrReorderCommandBuilder_DEFINED | 8 #ifndef GrReorderCommandBuilder_DEFINED |
9 #define GrReorderCommandBuilder_DEFINED | 9 #define GrReorderCommandBuilder_DEFINED |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 const GrPathProcessor*, | 24 const GrPathProcessor*, |
25 const GrPathRange*, | 25 const GrPathRange*, |
26 const void*, | 26 const void*, |
27 GrDrawTarget::PathIndexType, | 27 GrDrawTarget::PathIndexType, |
28 const float transformValues[], | 28 const float transformValues[], |
29 GrDrawTarget::PathTransformType , | 29 GrDrawTarget::PathTransformType , |
30 int, | 30 int, |
31 const GrStencilSettings&, | 31 const GrStencilSettings&, |
32 const GrPipelineOptimizations&) override { | 32 const GrPipelineOptimizations&) override { |
33 SkFAIL("Unsupported\n"); | 33 SkFAIL("Unsupported\n"); |
34 return NULL; | 34 return nullptr; |
35 } | 35 } |
36 | 36 |
37 private: | 37 private: |
38 typedef GrCommandBuilder INHERITED; | 38 typedef GrCommandBuilder INHERITED; |
39 | 39 |
40 }; | 40 }; |
41 | 41 |
42 #endif | 42 #endif |
OLD | NEW |