OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 #include "GrSWMaskHelper.h" | 8 #include "GrSWMaskHelper.h" |
9 | 9 |
10 #include "GrPipelineBuilder.h" | 10 #include "GrPipelineBuilder.h" |
11 #include "GrCaps.h" | 11 #include "GrCaps.h" |
| 12 #include "GrDrawTarget.h" |
12 #include "GrGpu.h" | 13 #include "GrGpu.h" |
13 | 14 |
14 #include "SkData.h" | 15 #include "SkData.h" |
15 #include "SkDistanceFieldGen.h" | 16 #include "SkDistanceFieldGen.h" |
16 #include "SkStrokeRec.h" | 17 #include "SkStrokeRec.h" |
17 | 18 |
18 // TODO: try to remove this #include | 19 // TODO: try to remove this #include |
19 #include "GrContext.h" | 20 #include "GrContext.h" |
20 | 21 |
21 namespace { | 22 namespace { |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 maskMatrix.preTranslate(SkIntToScalar(-rect.fLeft), SkIntToScalar(-rect.fTop
)); | 372 maskMatrix.preTranslate(SkIntToScalar(-rect.fLeft), SkIntToScalar(-rect.fTop
)); |
372 | 373 |
373 pipelineBuilder->addCoverageProcessor( | 374 pipelineBuilder->addCoverageProcessor( |
374 GrSimpleTextureEffect::Create(texture, | 375 GrSimpleTextureEffect::Create(texture, |
375 maskMatrix, | 376 maskMatrix, |
376 GrTextureParams::kNone_Fi
lterMode, | 377 GrTextureParams::kNone_Fi
lterMode, |
377 kDevice_GrCoordSet))->unr
ef(); | 378 kDevice_GrCoordSet))->unr
ef(); |
378 | 379 |
379 target->drawBWRect(pipelineBuilder, color, SkMatrix::I(), dstRect, NULL, &in
vert); | 380 target->drawBWRect(pipelineBuilder, color, SkMatrix::I(), dstRect, NULL, &in
vert); |
380 } | 381 } |
OLD | NEW |