Home | History | Annotate | Download | only in graphics

Lines Matching refs:y0

58             float x0, float y0, float x1, float y1,
60 LinearGradient_Delegate newDelegate = new LinearGradient_Delegate(x0, y0, x1, y1,
67 float x0, float y0, float x1, float y1,
70 x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/,
76 int native_shader, float x0, float y0, float x1, float y1,
84 int native_shader, float x0, float y0, float x1, float y1,
96 * @param y0 The y-coordinate for the start of the gradient line
105 private LinearGradient_Delegate(float x0, float y0, float x1, float y1,
108 mJavaPaint = new LinearGradientPaint(x0, y0, x1, y1, mColors, mPositions, tile);
125 public LinearGradientPaint(float x0, float y0, float x1, float y1, int colors[],
129 mY0 = y0;
131 mDy = y1 - y0;