Searched refs:isOpaque (Results 1 - 25 of 57) sorted by relevance

123

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DTexture.java21 // The isOpaque() function gives a hint about whether the texture is opaque,
43 public boolean isOpaque(); method in interface:Texture
H A DRawTexture.java35 public boolean isOpaque() { method in class:RawTexture
H A DUploadedTexture.java284 public void setOpaque(boolean isOpaque) { argument
285 mOpaque = isOpaque;
289 public boolean isOpaque() { method in class:UploadedTexture
/frameworks/support/v4/eclair-mr1/android/support/v4/view/
H A DViewCompatEclairMr1.java32 public static boolean isOpaque(View view) { method in class:ViewCompatEclairMr1
33 return view.isOpaque();
/frameworks/ex/framesequence/jni/
H A DFrameSequence.h49 virtual bool isOpaque() const = 0;
H A DFrameSequence_gif.h40 virtual bool isOpaque() const { function in class:FrameSequence_gif
H A DFrameSequence_webp.h42 virtual bool isOpaque() const { function in class:FrameSequence_webp
H A DFrameSequenceJNI.cpp43 frameSequence->isOpaque(),
/frameworks/base/core/java/android/view/
H A DHardwareLayer.java103 * @param isOpaque Whether this layer is opaque
108 public boolean prepare(int width, int height, boolean isOpaque) { argument
109 return nPrepare(mFinalizer.get(), width, height, isOpaque);
147 private static native boolean nPrepare(long layerUpdater, int width, int height, boolean isOpaque); argument
H A DSurfaceControl.java447 public void setOpaque(boolean isOpaque) { argument
449 if (isOpaque) {
/frameworks/native/services/surfaceflinger/
H A DLayerDim.h39 virtual bool isOpaque(const Layer::State&) const { return false; } function in class:android::LayerDim
H A DLayer.cpp425 if (!isOpaque(s) || s.alpha != 0xFF) {
731 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(s), s.alpha);
804 bool Layer::isOpaque(const Layer::State& s) const function in class:android::Layer
1120 const bool oldOpacity = isOpaque(s);
1297 if (oldOpacity != isOpaque(s)) {
1359 "isOpaque=%1d, invalidate=%1d, "
1365 isOpaque(s), contentDirty,
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DOpaqueActivity.java58 public boolean isOpaque() { method in class:OpaqueActivity.OpaqueView
/frameworks/base/core/jni/
H A Dandroid_view_HardwareLayer.cpp47 jlong layerUpdaterPtr, jint width, jint height, jboolean isOpaque) {
51 changed |= layer->setBlend(!isOpaque);
46 android_view_HardwareLayer_prepare(JNIEnv* env, jobject clazz, jlong layerUpdaterPtr, jint width, jint height, jboolean isOpaque) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java61 : !isOpaque(mode) ? ICON_ALPHA_WHEN_NOT_OPAQUE
70 private boolean isOpaque(int mode) { method in class:PhoneStatusBarTransitions
H A DNavigationBarTransitions.java95 final boolean isOpaque = mode == MODE_OPAQUE || mode == MODE_LIGHTS_OUT;
96 return isOpaque ? KeyButtonView.DEFAULT_QUIESCENT_ALPHA : 1f;
/frameworks/base/graphics/java/android/graphics/
H A DMovie.java35 public native boolean isOpaque(); method in class:Movie
/frameworks/base/libs/hwui/
H A DLayerRenderer.h61 bool isOpaque, bool forceFilter, GLenum renderTarget, float* textureTransform);
H A DAssetAtlas.cpp140 texture->blend = !bitmap->isOpaque();
/frameworks/ex/framesequence/src/android/support/rastermill/
H A DFrameSequence.java37 public boolean isOpaque() { return mOpaque; } method in class:FrameSequence
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.h91 inline bool isOpaque() const { function in class:android::ProgramCache::Key
H A DProgramCache.cpp184 if (needs.isOpaque()) {
198 if (!needs.isOpaque() && needs.isPremultiplied()) {
206 if (!needs.isOpaque() && needs.isPremultiplied()) {
/frameworks/base/tools/aapt/
H A DImages.cpp909 bool isOpaque = true; local
949 if (isOpaque) {
953 isOpaque = false;
985 *hasTransparency = !isOpaque;
986 int bpp = isOpaque ? 3 : 4;
990 NOISY(printf("isOpaque = %s\n", isOpaque ? "true" : "false"));
1003 if (isOpaque) {
1021 *colorType = isOpaque ? PNG_COLOR_TYPE_GRAY : PNG_COLOR_TYPE_GRAY_ALPHA;
1023 *colorType = isOpaque
[all...]
/frameworks/base/include/private/graphics/
H A DCanvas.h45 virtual bool isOpaque() = 0;
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java287 public boolean isOpaque(View view); method in interface:ViewCompat.ViewCompatImpl
451 public boolean isOpaque(View view) { method in class:ViewCompat.BaseViewCompatImpl
754 public boolean isOpaque(View view) { method in class:ViewCompat.EclairMr1ViewCompatImpl
755 return ViewCompatEclairMr1.isOpaque(view);
1755 * On API 7 and above this will call View's true isOpaque method. On previous platform
1760 public static boolean isOpaque(View view) { method in class:ViewCompat
1761 return IMPL.isOpaque(view);

Completed in 9146 milliseconds

123