HomeSort by relevance Sort by last modified time
    Searched defs:getPixel (Results 1 - 16 of 16) sorted by null

  /cts/tests/tests/graphics/src/android/graphics/cts/
SumPathEffectTest.java 76 assertEquals(expected.getPixel(i, j), bitmap.getPixel(i, j));
ComposePathEffectTest.java 75 assertEquals(expected.getPixel(x, y), actual.getPixel(x, y));
BitmapColorSpaceTest.java 377 public void getPixel() {
410 int srgb = b.getPixel(15, 15);
    [all...]
BitmapFactoryTest.java 609 assertEquals(premul.getPixel(i, 0), DEPREMUL_COLORS[i]);
610 assertEquals(unpremul.getPixel(i, 0), RAW_COLORS[i]);
    [all...]
  /external/deqp/framework/common/
tcuSurface.hpp 57 RGBA getPixel (int x, int y) const;
87 inline RGBA Surface::getPixel (int x, int y) const
tcuTexture.cpp     [all...]
  /cts/tests/tests/security/src/android/security/cts/
Movie33897722.java 82 assertEquals(bitmap.getPixel(x, y), Color.TRANSPARENT);
  /external/pdfium/core/fxcodec/jbig2/
JBig2_Image.cpp 71 int CJBig2_Image::getPixel(int32_t x, int32_t y) const {
    [all...]
  /external/skia/tools/skiaserve/
Request.cpp 269 SkColor Request::getPixel(int x, int y) {
  /external/skqp/tools/skiaserve/
Request.cpp 269 SkColor Request::getPixel(int x, int y) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableTestUtils.java 173 int idealColor = expected.getPixel(x, y);
174 int givenColor = actual.getPixel(x, y);
211 public static int getPixel(Drawable d, int x, int y) {
219 final int pixel = b.getPixel(x, y);
AnimatedImageDrawableTest.java 444 int color = actual.getPixel(i, j);
482 assertNotEquals(Color.RED, expected.getPixel(i, j));
490 assertEquals(Color.RED, expected.getPixel(i, j));
627 assertEquals(normal.getPixel(i, j), flipped.getPixel(width - 1 - i, j));
  /cts/tests/tests/view/src/android/view/cts/
TextureViewTest.java 101 assertEquals(Color.WHITE, getPixel(window, center));
211 screenshot.getPixel(10, texturePos.top - 10));
213 screenshot.getPixel(10, texturePos.bottom + 10));
215 screenshot.getPixel(texturePos.left + 10, texturePos.top + 10));
217 screenshot.getPixel(texturePos.right - 10, texturePos.top + 10));
219 screenshot.getPixel(texturePos.left + 10, texturePos.bottom - 10));
221 screenshot.getPixel(texturePos.right - 10, texturePos.bottom - 10));
444 int color = dstBitmap.getPixel(0, 0);
532 private int getPixel(Window window, Point point) {
537 int pixel = screenshot.getPixel(point.x, point.y)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBitmap.java 358 protected int getPixel(int x, int y) {
361 // Note that getPixel() returns a non-premultiplied ARGB value; if
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 438 assertEquals(bSrc.getPixel(i, j), bDst.getPixel(i, j));
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderImageLoadStoreTests.cpp 580 // \note For cube maps, set/getPixel's z parameter specifies the cube face in the same manner as in imageStore/imageLoad in GL shaders (see glslImageFuncZToCubeFace), instead of directly as a tcu::CubeFace.
585 Vec4 getPixel (int x, int y, int z) const;
660 Vec4 LayeredImage::getPixel (int x, int y, int z) const
663 return access.getPixel(x, y, m_type == TEXTURETYPE_CUBE ? 0 : z);
    [all...]

Completed in 1175 milliseconds