HomeSort by relevance Sort by last modified time
    Searched refs:isOpaque (Results 1 - 25 of 286) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
Texture.java 21 // The isOpaque() function gives a hint about whether the texture is opaque,
43 public boolean isOpaque();
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
Texture.java 21 // The isOpaque() function gives a hint about whether the texture is opaque,
43 public boolean isOpaque();
ColorTexture.java 45 public boolean isOpaque() {
46 return Utils.isOpaque(mColor);
ExtTexture.java 52 public boolean isOpaque() {
FadeInTexture.java 30 super(texture.getWidth(), texture.getHeight(), texture.isOpaque());
FadeOutTexture.java 29 super(texture.getWidth(), texture.getHeight(), texture.isOpaque());
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
Texture.java 21 // The isOpaque() function gives a hint about whether the texture is opaque,
43 public boolean isOpaque();
  /external/chromium_org/third_party/skia/src/opts/
SkBlitMask_opts_arm.cpp 40 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
41 if (isOpaque) {
SkBlitMask_opts_none.cpp 16 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
  /external/skia/src/opts/
SkBlitMask_opts_arm.cpp 40 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
41 if (isOpaque) {
SkBlitMask_opts_none.cpp 16 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
  /external/chromium_org/third_party/skia/tests/
ShaderOpacityTest.cpp 23 REPORTER_ASSERT(reporter, !shader->isOpaque());
33 REPORTER_ASSERT(reporter, !shader->isOpaque());
41 REPORTER_ASSERT(reporter, shader->isOpaque());
49 REPORTER_ASSERT(reporter, !shader->isOpaque());
70 REPORTER_ASSERT(reporter, grad->isOpaque());
78 REPORTER_ASSERT(reporter, !grad->isOpaque());
86 REPORTER_ASSERT(reporter, !grad->isOpaque());
94 REPORTER_ASSERT(reporter, !grad->isOpaque());
101 REPORTER_ASSERT(reporter, !colorShader1.isOpaque());
103 REPORTER_ASSERT(reporter, colorShader2.isOpaque());
    [all...]
  /external/skia/tests/
ShaderOpacityTest.cpp 23 REPORTER_ASSERT(reporter, !shader->isOpaque());
33 REPORTER_ASSERT(reporter, !shader->isOpaque());
41 REPORTER_ASSERT(reporter, shader->isOpaque());
49 REPORTER_ASSERT(reporter, !shader->isOpaque());
70 REPORTER_ASSERT(reporter, grad->isOpaque());
78 REPORTER_ASSERT(reporter, !grad->isOpaque());
86 REPORTER_ASSERT(reporter, !grad->isOpaque());
94 REPORTER_ASSERT(reporter, !grad->isOpaque());
101 REPORTER_ASSERT(reporter, !colorShader1.isOpaque());
103 REPORTER_ASSERT(reporter, colorShader2.isOpaque());
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence.h 49 virtual bool isOpaque() const = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageLayerChromiumTest.cpp 49 static PassRefPtr<TestImage> create(const IntSize& size, bool isOpaque)
51 return adoptRef(new TestImage(size, isOpaque));
54 explicit TestImage(const IntSize& size, bool isOpaque)
59 EXPECT_TRUE(bitmap.allocN32Pixels(size.width(), size.height(), isOpaque));
70 return m_nativeImage->bitmap().isOpaque();
  /external/chromium_org/third_party/skia/src/core/
SkBlitMask.h 65 static BlitLCD16RowProc BlitLCD16RowFactory(bool isOpaque);
71 static BlitLCD16RowProc PlatformBlitRowProcs16(bool isOpaque);
SkPaintPriv.cpp 17 // TODO: SkXfermode should have a virtual isOpaque method, which would
21 return bmpReplacesShader ? bmpReplacesShader->isOpaque() : true;
38 if (!bmpReplacesShader->isOpaque()) {
41 } else if (paint->getShader() && !paint->getShader()->isOpaque()) {
  /external/skia/src/core/
SkBlitMask.h 65 static BlitLCD16RowProc BlitLCD16RowFactory(bool isOpaque);
71 static BlitLCD16RowProc PlatformBlitRowProcs16(bool isOpaque);
SkPaintPriv.cpp 17 // TODO: SkXfermode should have a virtual isOpaque method, which would
21 return bmpReplacesShader ? bmpReplacesShader->isOpaque() : true;
38 if (!bmpReplacesShader->isOpaque()) {
41 } else if (paint->getShader() && !paint->getShader()->isOpaque()) {
  /frameworks/support/v4/eclair-mr1/android/support/v4/view/
ViewCompatEclairMr1.java 32 public static boolean isOpaque(View view) {
33 return view.isOpaque();
  /frameworks/native/services/surfaceflinger/
LayerDim.h 39 virtual bool isOpaque() const { return false; }
  /frameworks/base/core/java/android/view/
HardwareLayer.java 103 * @param isOpaque Whether this layer is opaque
108 public boolean prepare(int width, int height, boolean isOpaque) {
109 return nPrepare(mFinalizer.get(), width, height, isOpaque);
147 private static native boolean nPrepare(long layerUpdater, int width, int height, boolean isOpaque);
  /external/chromium_org/third_party/skia/include/images/
SkMovie.h 42 int isOpaque();
  /external/skia/include/images/
SkMovie.h 42 int isOpaque();
  /external/chromium_org/third_party/skia/samplecode/
SampleTinyBitmap.cpp 59 static void setBitmapOpaque(SkBitmap* bm, bool isOpaque) {
61 bm->setAlphaType(isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);

Completed in 663 milliseconds

1 2 3 4 5 6 7 8 91011>>