Searched refs:miter (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
H A DPathCache.cpp63 , miter(4.0f)
75 , miter(paint->getStrokeMiter())
87 hash = JenkinsHashMix(hash, android::hash_type(miter));
99 if (miter != rhs.miter) return false;
H A DPathCache.h128 float miter; member in struct:android::uirenderer::PathDescription
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java947 * Return the paint's stroke miter value. Used to control the behavior
948 * of miter joins when the joins angle is sharp.
950 * @return the paint's miter limit, used whenever the paint's style is
960 * Set the paint's stroke miter value. This is used to control the behavior
961 * of miter joins when the joins angle is sharp. This value must be >= 0.
963 * @param miter set the miter limit on the paint, used whenever the paint's
966 public void setStrokeMiter(float miter) { argument
967 nSetStrokeMiter(mNativePaint, miter);
970 private native void nSetStrokeMiter(long paintPtr, float miter); argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java155 * returns the value of stroke miter needed by the java api.
431 /*package*/ static void nSetStrokeMiter(Paint thisPaint, long nativePaint, float miter) { argument
438 delegate.mStrokeMiter = miter;
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp234 static void setStrokeMiter(JNIEnv* env, jobject, jlong paintHandle, jfloat miter) { argument
235 reinterpret_cast<Paint*>(paintHandle)->setStrokeMiter(miter);

Completed in 90 milliseconds