HomeSort by relevance Sort by last modified time
    Searched refs:isConvex (Results 1 - 25 of 40) sorted by null

1 2

  /external/skia/src/core/
SkPictureCommon.h 107 if (op.paint.isAntiAlias() && !op.path.isConvex()) {
124 if (op.opAA.aa() && !op.path.isConvex()) {
SkPictureContentInfo.cpp 59 if (paint.isAntiAlias() && !path.isConvex()) {
SkEdgeBuilder.cpp 448 const bool canCullToTheRight = !path.isConvex();
  /external/skia/tools/lua/
paths.lua 83 if path:isConvex() then
100 if path:isConvex() then
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
FastScrollThumbDrawable.java 44 if (mPath.isConvex()) {
  /external/skia/bench/
AAClipBench.cpp 42 SkASSERT(fClipPath.isConvex());
58 SkASSERT(fClipPath.isConvex());
131 SkASSERT(path.isConvex());
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 339 assertTrue(path.isConvex());
342 assertFalse(path.isConvex()); // path is concave
349 assertTrue(path.isConvex());
352 assertFalse(path.isConvex()); // path has hole, isn't convex
359 assertTrue(path.isConvex());
362 assertFalse(path.isConvex()); // path isn't one convex shape
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
PathPerfTest.java 87 path.isConvex();
  /frameworks/base/core/tests/coretests/src/android/graphics/drawable/
AdaptiveIconDrawableTest.java 132 assertTrue("path from device config is convex.", pathFromDeviceConfig.isConvex());
133 assertTrue("path from drawable is convex.", pathFromDrawable.isConvex());
156 assertTrue(mIconDrawable.getIconMask().isConvex());
171 assertTrue("outline path should be convex", outline.mPath.isConvex());
  /external/skia/gm/
dstreadshuffle.cpp 62 SkASSERT(fConvexPath.isConvex());
79 SkASSERT(!fConcavePath.isConvex());
convexpaths.cpp 281 SkASSERT(fPaths[i].isConvex());
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AdaptiveIconMaskTest.java 119 assertTrue("Mask is not convex", mMask.isConvex());
  /frameworks/base/graphics/java/android/graphics/
Outline.java 275 * {@link android.graphics.Path#isConvex() convex path}.
283 if (!convexPath.isConvex()) {
Path.java 201 public boolean isConvex() {
  /external/skia/include/core/
SkPath.h 156 bool isConvex() const {
161 * Set the isConvex flag to true or false. Convex paths may draw faster if
164 * isConvex == false
167 void setIsConvex(bool isConvex) {
168 this->setConvexity(isConvex ? kConvex_Convexity : kConcave_Convexity);
    [all...]
  /external/skia/example/
SkiaSDLExample.cpp 98 SkASSERT(!concavePath.isConvex());
  /external/skia/src/gpu/ops/
GrAAConvexTessellator.h 167 SkDEBUGCODE(bool isConvex(const GrAAConvexTessellator& tess) const;)
  /external/skia/src/pathops/
SkOpBuilder.cpp 138 if (test->isConvex()) {
SkPathOpsSimplify.cpp 141 if (path.isConvex()) {
  /external/skia/src/gpu/
GrShape.h 237 // SkPath.isConvex() really means "is this path convex were it to be closed" and
242 this->path().isConvex();
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 242 !path.isConvex()) {
  /frameworks/base/core/jni/android/graphics/
Path.cpp 493 static jboolean isConvex(jlong objHandle) {
495 return obj->isConvex();
550 {"nIsConvex","(J)Z", (void*) SkPathGlue::isConvex},
  /frameworks/base/libs/hwui/
SpotShadow.cpp     [all...]
  /external/skia/tests/
PictureTest.cpp 193 REPORTER_ASSERT(reporter, !path.isConvex());
215 REPORTER_ASSERT(reporter, !path.isConvex());
237 REPORTER_ASSERT(reporter, !path.isConvex());
    [all...]
PathTest.cpp 51 REPORTER_ASSERT(reporter, !path.isConvex());
565 bool smallConvex = smallPath.isConvex();
573 bool largeConvex = largePath.isConvex();
    [all...]

Completed in 2875 milliseconds

1 2