| OLD | NEW | 
|---|
| 1 | 1 | 
| 2 /* | 2 /* | 
| 3  * Copyright 2011 Google Inc. | 3  * Copyright 2011 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 | 9 | 
| 10 #include "GrPathRendererChain.h" | 10 #include "GrPathRendererChain.h" | 
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 71                     *stencilSupport = support; | 71                     *stencilSupport = support; | 
| 72                 } | 72                 } | 
| 73             } | 73             } | 
| 74             return fChain[i]; | 74             return fChain[i]; | 
| 75         } | 75         } | 
| 76     } | 76     } | 
| 77     return NULL; | 77     return NULL; | 
| 78 } | 78 } | 
| 79 | 79 | 
| 80 void GrPathRendererChain::init() { | 80 void GrPathRendererChain::init() { | 
| 81     GrAssert(!fInit); | 81     SkASSERT(!fInit); | 
| 82     GrGpu* gpu = fOwner->getGpu(); | 82     GrGpu* gpu = fOwner->getGpu(); | 
| 83     bool twoSided = gpu->caps()->twoSidedStencilSupport(); | 83     bool twoSided = gpu->caps()->twoSidedStencilSupport(); | 
| 84     bool wrapOp = gpu->caps()->stencilWrapOpsSupport(); | 84     bool wrapOp = gpu->caps()->stencilWrapOpsSupport(); | 
| 85     GrPathRenderer::AddPathRenderers(fOwner, this); | 85     GrPathRenderer::AddPathRenderers(fOwner, this); | 
| 86     this->addPathRenderer(SkNEW_ARGS(GrDefaultPathRenderer, | 86     this->addPathRenderer(SkNEW_ARGS(GrDefaultPathRenderer, | 
| 87                                      (twoSided, wrapOp)))->unref(); | 87                                      (twoSided, wrapOp)))->unref(); | 
| 88     fInit = true; | 88     fInit = true; | 
| 89 } | 89 } | 
| OLD | NEW | 
|---|