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 "GrDrawState.h" | 10 #include "GrDrawState.h" |
11 #include "GrDrawTargetCaps.h" | 11 #include "GrDrawTargetCaps.h" |
12 #include "GrGpu.h" | 12 #include "GrGpu.h" |
13 | 13 |
14 #include "SkData.h" | 14 #include "SkData.h" |
| 15 #include "SkDistanceFieldGen.h" |
15 #include "SkStrokeRec.h" | 16 #include "SkStrokeRec.h" |
16 | 17 |
17 // TODO: try to remove this #include | 18 // TODO: try to remove this #include |
18 #include "GrContext.h" | 19 #include "GrContext.h" |
19 | 20 |
20 namespace { | 21 namespace { |
21 | 22 |
22 /* | 23 /* |
23 * Convert a boolean operation into a transfer mode code | 24 * Convert a boolean operation into a transfer mode code |
24 */ | 25 */ |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 this->compressTextureData(texture, desc); | 300 this->compressTextureData(texture, desc); |
300 break; | 301 break; |
301 | 302 |
302 case kBlitter_CompressionMode: | 303 case kBlitter_CompressionMode: |
303 SkASSERT(fCompressedBuffer.get()); | 304 SkASSERT(fCompressedBuffer.get()); |
304 this->sendTextureData(texture, desc, fCompressedBuffer.get(), 0); | 305 this->sendTextureData(texture, desc, fCompressedBuffer.get(), 0); |
305 break; | 306 break; |
306 } | 307 } |
307 } | 308 } |
308 | 309 |
| 310 /** |
| 311 * Convert mask generation results to an SDF |
| 312 */ |
| 313 void GrSWMaskHelper::toSDF(void* sdf) { |
| 314 SkAutoLockPixels alp(fBM); |
| 315 |
| 316 SkGenerateDistanceFieldFromA8Image((unsigned char*)sdf, |
| 317 (const unsigned char*)fBM.getPixels(), |
| 318 fBM.width(), fBM.height(), fBM.rowBytes()
); |
| 319 } |
| 320 |
309 //////////////////////////////////////////////////////////////////////////////// | 321 //////////////////////////////////////////////////////////////////////////////// |
310 /** | 322 /** |
311 * Software rasterizes path to A8 mask (possibly using the context's matrix) | 323 * Software rasterizes path to A8 mask (possibly using the context's matrix) |
312 * and uploads the result to a scratch texture. Returns the resulting | 324 * and uploads the result to a scratch texture. Returns the resulting |
313 * texture on success; NULL on failure. | 325 * texture on success; NULL on failure. |
314 */ | 326 */ |
315 GrTexture* GrSWMaskHelper::DrawPathMaskToTexture(GrContext* context, | 327 GrTexture* GrSWMaskHelper::DrawPathMaskToTexture(GrContext* context, |
316 const SkPath& path, | 328 const SkPath& path, |
317 const SkStrokeRec& stroke, | 329 const SkStrokeRec& stroke, |
318 const SkIRect& resultBounds, | 330 const SkIRect& resultBounds, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 maskMatrix.preConcat(drawState->getViewMatrix()); | 374 maskMatrix.preConcat(drawState->getViewMatrix()); |
363 | 375 |
364 drawState->addCoverageProcessor( | 376 drawState->addCoverageProcessor( |
365 GrSimpleTextureEffect::Create(texture, | 377 GrSimpleTextureEffect::Create(texture, |
366 maskMatrix, | 378 maskMatrix, |
367 GrTextureParams::kNone_Fi
lterMode, | 379 GrTextureParams::kNone_Fi
lterMode, |
368 kPosition_GrCoordSet))->u
nref(); | 380 kPosition_GrCoordSet))->u
nref(); |
369 | 381 |
370 target->drawSimpleRect(dstRect); | 382 target->drawSimpleRect(dstRect); |
371 } | 383 } |
OLD | NEW |