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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 fMatrix.setIdentity(); | 167 fMatrix.setIdentity(); |
168 } | 168 } |
169 | 169 |
170 // Now translate so the bound's UL corner is at the origin | 170 // Now translate so the bound's UL corner is at the origin |
171 fMatrix.postTranslate(-resultBounds.fLeft * SK_Scalar1, | 171 fMatrix.postTranslate(-resultBounds.fLeft * SK_Scalar1, |
172 -resultBounds.fTop * SK_Scalar1); | 172 -resultBounds.fTop * SK_Scalar1); |
173 SkIRect bounds = SkIRect::MakeWH(resultBounds.width(), | 173 SkIRect bounds = SkIRect::MakeWH(resultBounds.width(), |
174 resultBounds.height()); | 174 resultBounds.height()); |
175 | 175 |
176 if (allowCompression && | 176 if (allowCompression && |
177 fContext->getGpu()->caps()->drawPathMasksToCompressedTexturesSupport() &
& | 177 fContext->getOptions().fDrawPathToCompressedTexture && |
178 choose_compressed_fmt(fContext->getGpu()->caps(), &fCompressedFormat)) { | 178 choose_compressed_fmt(fContext->getGpu()->caps(), &fCompressedFormat)) { |
179 fCompressionMode = kCompress_CompressionMode; | 179 fCompressionMode = kCompress_CompressionMode; |
180 } | 180 } |
181 | 181 |
182 // Make sure that the width is a multiple of the desired block dimensions | 182 // Make sure that the width is a multiple of the desired block dimensions |
183 // to allow for specialized SIMD instructions that compress multiple blocks
at a time. | 183 // to allow for specialized SIMD instructions that compress multiple blocks
at a time. |
184 int cmpWidth = bounds.fRight; | 184 int cmpWidth = bounds.fRight; |
185 int cmpHeight = bounds.fBottom; | 185 int cmpHeight = bounds.fBottom; |
186 if (kCompress_CompressionMode == fCompressionMode) { | 186 if (kCompress_CompressionMode == fCompressionMode) { |
187 int dimX, dimY; | 187 int dimX, dimY; |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 maskMatrix.preTranslate(SkIntToScalar(-rect.fLeft), SkIntToScalar(-rect.fTop
)); | 371 maskMatrix.preTranslate(SkIntToScalar(-rect.fLeft), SkIntToScalar(-rect.fTop
)); |
372 | 372 |
373 pipelineBuilder->addCoverageProcessor( | 373 pipelineBuilder->addCoverageProcessor( |
374 GrSimpleTextureEffect::Create(texture, | 374 GrSimpleTextureEffect::Create(texture, |
375 maskMatrix, | 375 maskMatrix, |
376 GrTextureParams::kNone_Fi
lterMode, | 376 GrTextureParams::kNone_Fi
lterMode, |
377 kDevice_GrCoordSet))->unr
ef(); | 377 kDevice_GrCoordSet))->unr
ef(); |
378 | 378 |
379 target->drawRect(pipelineBuilder, color, SkMatrix::I(), dstRect, NULL, &inve
rt); | 379 target->drawRect(pipelineBuilder, color, SkMatrix::I(), dstRect, NULL, &inve
rt); |
380 } | 380 } |
OLD | NEW |