Searched defs:color1 (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DLinearGradient.java77 @param color1 The color at the end of the gradient line.
80 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1, argument
88 mColor1 = color1;
90 init(nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt));
118 int color0, int color1, int tileMode);
117 nativeCreate2(float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
H A DSweepGradient.java74 * @param color1 The color to use at the end of the sweep
76 public SweepGradient(float cx, float cy, int color0, int color1) { argument
81 mColor1 = color1;
82 init(nativeCreate2(cx, cy, color0, color1));
108 private static native long nativeCreate2(float x, float y, int color0, int color1); argument
H A DRadialGradient.java123 int color0, int color1, int tileMode);
122 nativeCreate2(float x, float y, float radius, int color0, int color1, int tileMode) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRadialGradient_Delegate.java68 int color0, int color1, int tileMode) {
69 return nativeCreate1(x, y, radius, new int[] { color0, color1 }, null /*positions*/,
67 nativeCreate2(float x, float y, float radius, int color0, int color1, int tileMode) argument
H A DSweepGradient_Delegate.java61 /*package*/ static long nativeCreate2(float x, float y, int color0, int color1) { argument
62 return nativeCreate1(x, y, new int[] { color0, color1 }, null /*positions*/);
H A DLinearGradient_Delegate.java70 int color0, int color1, int tileMode) {
72 x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/,
68 nativeCreate2(LinearGradient thisGradient, float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
/frameworks/native/cmds/flatland/
H A DRenderers.cpp69 mColor1UniformLoc = glGetUniformLocation(mGradPgm, "color1");
97 const float* color1 = genColor(); local
114 glUniform4fv(mColor1UniformLoc, 1, color1);
/frameworks/support/design/src/android/support/design/widget/
H A DCollapsingTextHelper.java553 * Blend {@code color1} and {@code color2} using the given ratio.
555 * @param ratio of which to blend. 0.0 will return {@code color1}, 0.5 will give an even blend,
558 private static int blendColors(int color1, int color2, float ratio) { argument
560 float a = (Color.alpha(color1) * inverseRatio) + (Color.alpha(color2) * ratio);
561 float r = (Color.red(color1) * inverseRatio) + (Color.red(color2) * ratio);
562 float g = (Color.green(color1) * inverseRatio) + (Color.green(color2) * ratio);
563 float b = (Color.blue(color1) * inverseRatio) + (Color.blue(color2) * ratio);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeProgressBar.java83 * @param color1 Integer representation of a color.
88 void setColorScheme(int color1, int color2, int color3, int color4) { argument
89 mColor1 = color1;
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp131 jint color0, jint color1, jint tileMode)
139 colors[1] = color1;
175 jint color0, jint color1, jint tileMode) {
181 colors[1] = color1;
212 int color0, int color1) {
215 colors[1] = color1;
129 LinearGradient_create2(JNIEnv* env, jobject o, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jint color0, jint color1, jint tileMode) argument
174 RadialGradient_create2(JNIEnv* env, jobject, jfloat x, jfloat y, jfloat radius, jint color0, jint color1, jint tileMode) argument
211 SweepGradient_create2(JNIEnv* env, jobject, jfloat x, jfloat y, int color0, int color1) argument
/frameworks/native/opengl/libagl/
H A Ddxt.cpp130 * contains a transparent pixel (color0 < color1, code == 3). This
159 uint16_t color1 = colors >> 16; local
161 if (color0 < color1) {
225 uint16_t color1 = colors >> 16; local
230 if (color0 != prev_color0 || color1 != prev_color1) {
233 prev_color1 = color1;
239 int r1 = red(color1);
240 int g1 = green(color1);
241 int b1 = blue(color1);
248 c[1] = color1;
350 uint16_t color1 = colors >> 16; local
507 uint16_t color1 = colors >> 16; local
[all...]

Completed in 1008 milliseconds