/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowPaint.java | 30 private boolean antiAlias; field in ShadowPaint 38 antiAlias = ( flags & Paint.ANTI_ALIAS_FLAG ) == Paint.ANTI_ALIAS_FLAG; in __constructor__() 201 public void setAntiAlias(boolean antiAlias) { in setAntiAlias() argument 202 this.antiAlias = antiAlias; in setAntiAlias() 217 return antiAlias; in isAntiAlias()
|
/external/skia/src/gpu/ |
D | GrPathRenderer.h | 106 bool antiAlias) const = 0; 119 bool antiAlias) { in drawPath() argument 121 SkASSERT(this->canDrawPath(path, stroke, target, antiAlias)); in drawPath() 124 return this->onDrawPath(path, stroke, target, antiAlias); in drawPath() 171 bool antiAlias) = 0;
|
D | GrStencilAndCoverPathRenderer.cpp | 40 bool antiAlias) const { in canDrawPath() 42 !antiAlias && // doesn't do per-path AA, relies on the target having MSAA in canDrawPath() 65 bool antiAlias) { in onDrawPath() argument 66 SkASSERT(!antiAlias); in onDrawPath()
|
D | GrSWMaskHelper.cpp | 42 bool antiAlias, uint8_t alpha) { in draw() argument 48 paint.setAntiAlias(antiAlias); in draw() 60 bool antiAlias, uint8_t alpha) { in draw() argument 76 paint.setAntiAlias(antiAlias); in draw() 160 bool antiAlias, in DrawPathMaskToTexture() argument 170 helper.draw(path, stroke, SkRegion::kReplace_Op, antiAlias, 0xFF); in DrawPathMaskToTexture()
|
D | GrSWMaskHelper.h | 55 bool antiAlias, uint8_t alpha); 59 bool antiAlias, uint8_t alpha); 79 bool antiAlias,
|
D | GrSoftwarePathRenderer.cpp | 17 bool antiAlias) const { in canDrawPath() 18 if (!antiAlias || NULL == fContext) { in canDrawPath() 119 bool antiAlias) { in onDrawPath() argument 141 antiAlias, &vm)); in onDrawPath()
|
D | GrAAConvexPathRenderer.h | 19 bool antiAlias) const SK_OVERRIDE; 25 bool antiAlias) SK_OVERRIDE;
|
D | GrSoftwarePathRenderer.h | 30 bool antiAlias) const SK_OVERRIDE; 39 bool antiAlias) SK_OVERRIDE;
|
D | GrStencilAndCoverPathRenderer.h | 31 bool antiAlias) const SK_OVERRIDE; 41 bool antiAlias) SK_OVERRIDE;
|
D | GrDefaultPathRenderer.h | 25 bool antiAlias) const SK_OVERRIDE; 36 bool antiAlias) SK_OVERRIDE;
|
D | GrAAHairLinePathRenderer.h | 23 bool antiAlias) const SK_OVERRIDE; 33 bool antiAlias) SK_OVERRIDE;
|
D | GrPathRendererChain.cpp | 42 bool antiAlias = (kColorAntiAlias_DrawType == drawType || in getPathRenderer() local 61 if (fChain[i]->canDrawPath(path, stroke, target, antiAlias)) { in getPathRenderer()
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrPathRenderer.h | 106 bool antiAlias) const = 0; 119 bool antiAlias) { in drawPath() argument 121 SkASSERT(this->canDrawPath(path, stroke, target, antiAlias)); in drawPath() 124 return this->onDrawPath(path, stroke, target, antiAlias); in drawPath() 171 bool antiAlias) = 0;
|
D | GrStencilAndCoverPathRenderer.cpp | 40 bool antiAlias) const { in canDrawPath() 42 !antiAlias && // doesn't do per-path AA, relies on the target having MSAA in canDrawPath() 65 bool antiAlias) { in onDrawPath() argument 66 SkASSERT(!antiAlias); in onDrawPath()
|
D | GrSWMaskHelper.cpp | 42 bool antiAlias, uint8_t alpha) { in draw() argument 48 paint.setAntiAlias(antiAlias); in draw() 60 bool antiAlias, uint8_t alpha) { in draw() argument 76 paint.setAntiAlias(antiAlias); in draw() 160 bool antiAlias, in DrawPathMaskToTexture() argument 170 helper.draw(path, stroke, SkRegion::kReplace_Op, antiAlias, 0xFF); in DrawPathMaskToTexture()
|
D | GrSWMaskHelper.h | 55 bool antiAlias, uint8_t alpha); 59 bool antiAlias, uint8_t alpha); 79 bool antiAlias,
|
D | GrSoftwarePathRenderer.cpp | 17 bool antiAlias) const { in canDrawPath() 18 if (!antiAlias || NULL == fContext) { in canDrawPath() 119 bool antiAlias) { in onDrawPath() argument 141 antiAlias, &vm)); in onDrawPath()
|
D | GrAAConvexPathRenderer.h | 19 bool antiAlias) const SK_OVERRIDE; 25 bool antiAlias) SK_OVERRIDE;
|
D | GrSoftwarePathRenderer.h | 30 bool antiAlias) const SK_OVERRIDE; 39 bool antiAlias) SK_OVERRIDE;
|
D | GrStencilAndCoverPathRenderer.h | 31 bool antiAlias) const SK_OVERRIDE; 41 bool antiAlias) SK_OVERRIDE;
|
D | GrDefaultPathRenderer.h | 25 bool antiAlias) const SK_OVERRIDE; 36 bool antiAlias) SK_OVERRIDE;
|
D | GrAAHairLinePathRenderer.h | 23 bool antiAlias) const SK_OVERRIDE; 33 bool antiAlias) SK_OVERRIDE;
|
D | GrPathRendererChain.cpp | 42 bool antiAlias = (kColorAntiAlias_DrawType == drawType || in getPathRenderer() local 61 if (fChain[i]->canDrawPath(path, stroke, target, antiAlias)) { in getPathRenderer()
|
/external/skia/src/animator/ |
D | SkDrawPaint.cpp | 38 SK_MEMBER(antiAlias, Boolean), 69 SkDrawPaint::SkDrawPaint() : antiAlias(-1), color(NULL), fakeBold(-1), filterBitmap(-1), in SkDrawPaint() 216 if (antiAlias != -1) in setupPaint() 217 paint->setAntiAlias(SkToBool(antiAlias)); in setupPaint()
|
/external/chromium_org/third_party/skia/src/animator/ |
D | SkDrawPaint.cpp | 38 SK_MEMBER(antiAlias, Boolean), 69 SkDrawPaint::SkDrawPaint() : antiAlias(-1), color(NULL), fakeBold(-1), filterBitmap(-1), in SkDrawPaint() 216 if (antiAlias != -1) in setupPaint() 217 paint->setAntiAlias(SkToBool(antiAlias)); in setupPaint()
|