Searched refs:alpha (Results 151 - 175 of 236) sorted by relevance

12345678910

/frameworks/base/opengl/java/android/opengl/
H A DGLES11Ext.java279 // C function void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
285 int alpha
309 // C function void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
315 int alpha
H A DGLLogWrapper.java1231 public void glClearColor(float red, float green, float blue, float alpha) { argument
1236 arg("alpha", alpha);
1239 mgl.glClearColor(red, green, blue, alpha);
1243 public void glClearColorx(int red, int green, int blue, int alpha) { argument
1248 arg("alpha", alpha);
1251 mgl.glClearColorx(red, green, blue, alpha);
1291 public void glColor4f(float red, float green, float blue, float alpha) { argument
1296 arg("alpha", alph
1303 glColor4x(int red, int green, int blue, int alpha) argument
1315 glColorMask(boolean red, boolean green, boolean blue, boolean alpha) argument
2801 glColor4ub(byte red, byte green, byte blue, byte alpha) argument
[all...]
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java316 * it causes bad artifacts. Careful attention to geometry and alpha transparency of
474 * @param alpha the amount of alpha
476 public void setBackgroundColor(float red, float green, float blue, float alpha) { argument
477 mBackgroundColor = new Float4(red, green, blue, alpha);
498 * texture with alpha = 0 to allow details to slowly fade in.
726 * These alpha values will be faded in from the background to the foreground over
806 * Whether to use alpha when drawing a primitive: on for translucent, off for opaque.
H A DCarouselRS.java566 final boolean alpha = (config & CarouselController.STORE_CONFIG_ALPHA) != 0;
572 final ProgramStore.BlendDstFunc dstFunc = alpha ?
905 public void setRezInCardCount(float alpha) { argument
906 mScript.set_rezInCardCount(alpha);
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java188 * Set the alpha value used for non-primary page titles.
190 * @param alpha Opacity value in the range 0-1f
192 public void setNonPrimaryAlpha(float alpha) { argument
193 mNonPrimaryAlpha = (int) (alpha * 255) & 0xFF;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_int.h255 int alpha; /* weight for I frame */ member in struct:tagAVCRateControl
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
H A DarmVC.h102 * alpha) of the current block
147 * alpha blocks spatially corresponding to luminance
250 * alpha) of the current block
808 * [in] alpha alpha threshold value
820 int alpha, /* alpha */
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
H A DarmVC.h102 * alpha) of the current block
147 * alpha blocks spatially corresponding to luminance
250 * alpha) of the current block
808 * [in] alpha alpha threshold value
820 int alpha, /* alpha */
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/api/
H A DarmVC.h102 * alpha) of the current block
147 * alpha blocks spatially corresponding to luminance
250 * alpha) of the current block
808 * [in] alpha alpha threshold value
820 int alpha, /* alpha */
/frameworks/base/libs/hwui/
H A DLayer.cpp135 OpenGLRenderer::getAlphaAndModeDirect(paint, &alpha, &mode);
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp571 clear_color_.alpha);
602 void ShaderProgram::SetClearColor(float red, float green, float blue, float alpha) { argument
606 clear_color_.alpha = alpha;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardCircleFramedDrawable.java159 public void setAlpha(int alpha) { argument
H A DSlidingChallengeLayout.java275 public void setHandleAlpha(float alpha) { argument
277 mExpandChallengeView.setAlpha(alpha);
495 Animator anim = ObjectAnimator.ofFloat(mScrimView, "alpha", 1f);
522 Animator anim = ObjectAnimator.ofFloat(mScrimView, "alpha", 0f);
1058 float alpha = show ? 1f : 0f;
1060 mFader = ObjectAnimator.ofFloat(mChallengeView, "alpha", alpha);
/frameworks/base/services/java/com/android/server/wm/
H A DDisplayMagnifier.java475 private static final String PROPERTY_NAME_ALPHA = "alpha";
568 public void setAlpha(int alpha) { argument
570 if (mAlpha == alpha) {
573 mAlpha = alpha;
576 Slog.i(LOG_TAG, "ViewportWindow set alpha: " + alpha);
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp542 // single pixel of the given color and alpha values.
543 uint32_t hwcTestColor2Pixel(uint32_t format, ColorFract color, float alpha) argument
587 pixel |= htonl((uint32_t) round((((1 << attrib->aSize) - 1) * alpha))
599 // Sets the pixel at the given x and y coordinates to the color and alpha
650 // Fill a given graphic buffer with a uniform color and alpha
651 void hwcTestFillColor(GraphicBuffer *gBuf, ColorFract color, float alpha) argument
657 pixel = hwcTestColor2Pixel(gBuf->getPixelFormat(), color, alpha);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h169 virtual void setPlaneAlpha(uint8_t alpha) = 0;
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java685 public int saveLayerAlpha(RectF bounds, int alpha, int saveFlags) { argument
688 alpha, saveFlags);
690 return nSaveLayerAlpha(mRenderer, alpha, saveFlags);
693 private static native int nSaveLayerAlpha(int renderer, int alpha, int saveFlags); argument
696 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha, argument
699 return nSaveLayerAlpha(mRenderer, left, top, right, bottom, alpha, saveFlags);
705 float bottom, int alpha, int saveFlags);
704 nSaveLayerAlpha(int renderer, float left, float top, float right, float bottom, int alpha, int saveFlags) argument
H A DView.java569 * classes change actual properties of the View object, such as {@link #setAlpha(float) alpha} and
580 * rotation, translation and alpha of a view over time. If the animation is
1643 * the alpha must be restored.
2247 * Flag indicating that view has an alpha animation set on it. This is used to track whether an
2249 * DisplayList to restore its alpha value.
2925 * property only used by transitions, which is composited with the other alpha
2926 * values to calculate the final visual alpha value.
5353 * entirely by its predecessors, and has an alpha greater than zero.
5366 * has an alpha greater than zero, and the specified portion is not
5386 // An invisible predecessor or one with alpha zer
9854 setAlpha(float alpha) argument
9883 setAlphaNoInvalidation(float alpha) argument
9910 setTransitionAlpha(float alpha) argument
16870 onSetAlpha(int alpha) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp385 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
388 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
393 (GLclampf)alpha
397 /* void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
400 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
405 (GLclampx)alpha
445 /* void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) */
448 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
453 (GLfloat)alpha
457 /* void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
387 android_glClearColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
399 android_glClearColorx__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
447 android_glColor4f__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
459 android_glColor4x__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
471 android_glColorMask__ZZZZ(JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) argument
[all...]
H A Dandroid_view_SurfaceControl.cpp269 static void nativeSetAlpha(JNIEnv* env, jclass clazz, jint nativeObject, jfloat alpha) { argument
271 status_t err = ctrl->setAlpha(alpha);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1130 .alpha(makeVisible ? 1f : 0f)
1167 mClearButton, "alpha", clearable ? 1.0f : 0.0f).setDuration(250);
1199 .alpha(showDot?1:0)
1264 .alpha(0f)
1273 .alpha(1f)
1313 .alpha(0f)
1322 .alpha(1f)
2537 float alpha = 1.0f - frac;
2540 mHeadsUpNotificationView.setAlpha(alpha);
2700 public void setAlpha(int alpha) { argument
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h31 void GLTrace_glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
40 void GLTrace_glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
43 void GLTrace_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
399 void GLTrace_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
427 void GLTrace_glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
431 void GLTrace_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
432 void GLTrace_glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
499 void GLTrace_glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
502 void GLTrace_glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java1247 public void setFeatureDrawableAlpha(int featureId, int alpha) { argument
1249 if (st.alpha != alpha) {
1250 st.alpha = alpha;
1292 * @param alpha The new alpha blending of the Drawable.
1294 protected void onDrawableChanged(int featureId, Drawable drawable, int alpha) { argument
1305 drawable.setAlpha(alpha);
2794 int alpha
3478 int alpha = 255; field in class:PhoneWindow.DrawableFeatureState
[all...]
/frameworks/base/core/java/android/app/
H A DDialog.java1072 public final void setFeatureDrawableAlpha(int featureId, int alpha) { argument
1073 getWindow().setFeatureDrawableAlpha(featureId, alpha);
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp39 static int Color_HSVToColor(JNIEnv* env, jobject, int alpha, jfloatArray hsvArray) argument
49 return SkHSVToColor(alpha, hsv);

Completed in 5118 milliseconds

12345678910