| 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" |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 maskMatrix.setIDiv(texture->width(), texture->height()); | 366 maskMatrix.setIDiv(texture->width(), texture->height()); |
| 367 maskMatrix.preTranslate(SkIntToScalar(-rect.fLeft), SkIntToScalar(-rect.fTop
)); | 367 maskMatrix.preTranslate(SkIntToScalar(-rect.fLeft), SkIntToScalar(-rect.fTop
)); |
| 368 | 368 |
| 369 pipelineBuilder->addCoverageProcessor( | 369 pipelineBuilder->addCoverageProcessor( |
| 370 GrSimpleTextureEffect::Create(pipelineBuilder->getProce
ssorDataManager(), | 370 GrSimpleTextureEffect::Create(pipelineBuilder->getProce
ssorDataManager(), |
| 371 texture, | 371 texture, |
| 372 maskMatrix, | 372 maskMatrix, |
| 373 GrTextureParams::kNone_Fi
lterMode, | 373 GrTextureParams::kNone_Fi
lterMode, |
| 374 kDevice_GrCoordSet))->unr
ef(); | 374 kDevice_GrCoordSet))->unr
ef(); |
| 375 | 375 |
| 376 target->drawBWRect(*pipelineBuilder, color, SkMatrix::I(), dstRect, invert); | 376 target->drawNonAARect(*pipelineBuilder, color, SkMatrix::I(), dstRect, inver
t); |
| 377 } | 377 } |
| OLD | NEW |