Searched refs:antiAlias (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
H A DGrAndroidPathRenderer.h19 bool antiAlias) const SK_OVERRIDE;
25 bool antiAlias) SK_OVERRIDE;
H A DGrAndroidPathRenderer.cpp19 bool antiAlias) const {
32 bool antiAlias) {
36 android::uirenderer::PathRenderer::ConvexPathVertices(origPath, stroke, antiAlias, NULL,
41 if (antiAlias) {
64 if (antiAlias) {
29 onDrawPath(const SkPath& origPath, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
/external/chromium_org/third_party/skia/experimental/StrokePathRenderer/
H A DGrStrokePathRenderer.h23 bool antiAlias) const SK_OVERRIDE;
29 bool antiAlias) SK_OVERRIDE;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAAConvexPathRenderer.h19 bool antiAlias) const SK_OVERRIDE;
25 bool antiAlias) SK_OVERRIDE;
H A DGrSoftwarePathRenderer.h30 bool antiAlias) const SK_OVERRIDE;
39 bool antiAlias) SK_OVERRIDE;
H A DGrStencilAndCoverPathRenderer.h31 bool antiAlias) const SK_OVERRIDE;
41 bool antiAlias) SK_OVERRIDE;
H A DGrDefaultPathRenderer.h25 bool antiAlias) const SK_OVERRIDE;
36 bool antiAlias) SK_OVERRIDE;
H A DGrStencilAndCoverPathRenderer.cpp40 bool antiAlias) const {
42 !antiAlias && // doesn't do per-path AA, relies on the target having MSAA
65 bool antiAlias) {
66 SkASSERT(!antiAlias);
62 onDrawPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
H A DGrSWMaskHelper.h55 bool antiAlias, uint8_t alpha);
59 bool antiAlias, uint8_t alpha);
79 bool antiAlias,
H A DGrPathRenderer.h99 * @param antiAlias True if anti-aliasing is required.
106 bool antiAlias) const = 0;
114 * @param antiAlias true if anti-aliasing is required.
119 bool antiAlias) {
121 SkASSERT(this->canDrawPath(path, stroke, target, antiAlias));
124 return this->onDrawPath(path, stroke, target, antiAlias);
171 bool antiAlias) = 0;
116 drawPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
H A DGrSoftwarePathRenderer.cpp17 bool antiAlias) const {
18 if (!antiAlias || NULL == fContext) {
24 // the "!antiAlias" clause from the above test
119 bool antiAlias) {
141 antiAlias, &vm));
116 onDrawPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
H A DGrAAHairLinePathRenderer.h23 bool antiAlias) const SK_OVERRIDE;
33 bool antiAlias) SK_OVERRIDE;
/external/skia/experimental/AndroidPathRenderer/
H A DGrAndroidPathRenderer.h19 bool antiAlias) const SK_OVERRIDE;
25 bool antiAlias) SK_OVERRIDE;
H A DGrAndroidPathRenderer.cpp19 bool antiAlias) const {
32 bool antiAlias) {
36 android::uirenderer::PathRenderer::ConvexPathVertices(origPath, stroke, antiAlias, NULL,
41 if (antiAlias) {
64 if (antiAlias) {
29 onDrawPath(const SkPath& origPath, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
/external/skia/experimental/StrokePathRenderer/
H A DGrStrokePathRenderer.h23 bool antiAlias) const SK_OVERRIDE;
29 bool antiAlias) SK_OVERRIDE;
/external/skia/src/gpu/
H A DGrAAConvexPathRenderer.h21 bool antiAlias) const SK_OVERRIDE;
27 bool antiAlias) SK_OVERRIDE;
H A DGrSoftwarePathRenderer.h30 bool antiAlias) const SK_OVERRIDE;
39 bool antiAlias) SK_OVERRIDE;
H A DGrStencilAndCoverPathRenderer.h31 bool antiAlias) const SK_OVERRIDE;
41 bool antiAlias) SK_OVERRIDE;
H A DGrDefaultPathRenderer.h25 bool antiAlias) const SK_OVERRIDE;
36 bool antiAlias) SK_OVERRIDE;
H A DGrStencilAndCoverPathRenderer.cpp40 bool antiAlias) const {
42 !antiAlias && // doesn't do per-path AA, relies on the target having MSAA
65 bool antiAlias) {
66 SkASSERT(!antiAlias);
62 onDrawPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
H A DGrSWMaskHelper.h55 bool antiAlias, uint8_t alpha);
59 bool antiAlias, uint8_t alpha);
79 bool antiAlias,
H A DGrPathRenderer.h99 * @param antiAlias True if anti-aliasing is required.
106 bool antiAlias) const = 0;
114 * @param antiAlias true if anti-aliasing is required.
119 bool antiAlias) {
121 SkASSERT(this->canDrawPath(path, stroke, target, antiAlias));
124 return this->onDrawPath(path, stroke, target, antiAlias);
171 bool antiAlias) = 0;
116 drawPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
H A DGrSoftwarePathRenderer.cpp17 bool antiAlias) const {
18 if (!antiAlias || NULL == fContext) {
24 // the "!antiAlias" clause from the above test
119 bool antiAlias) {
141 antiAlias, &vm));
116 onDrawPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target, bool antiAlias) argument
H A DGrAAHairLinePathRenderer.h23 bool antiAlias) const SK_OVERRIDE;
33 bool antiAlias) SK_OVERRIDE;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPaint.java30 private boolean antiAlias; field in class:ShadowPaint
38 antiAlias = ( flags & Paint.ANTI_ALIAS_FLAG ) == Paint.ANTI_ALIAS_FLAG;
201 public void setAntiAlias(boolean antiAlias) { argument
202 this.antiAlias = antiAlias;
217 return antiAlias;

Completed in 387 milliseconds

12