Home | History | Annotate | Download | only in graphics

Lines Matching refs:y1

24         @param y1           The y-coordinate for the end of the gradient line
31 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[],
39 native_instance = nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt);
40 native_shader = nativePostCreate1(native_instance, x0, y0, x1, y1, colors, positions,
48 @param y1 The y-coordinate for the end of the gradient line
53 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1,
55 native_instance = nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt);
56 native_shader = nativePostCreate2(native_instance, x0, y0, x1, y1, color0, color1,
60 private native int nativeCreate1(float x0, float y0, float x1, float y1,
62 private native int nativeCreate2(float x0, float y0, float x1, float y1,
64 private native int nativePostCreate1(int native_shader, float x0, float y0, float x1, float y1,
66 private native int nativePostCreate2(int native_shader, float x0, float y0, float x1, float y1,