HomeSort by relevance Sort by last modified time
    Searched defs:setPixel (Results 1 - 25 of 68) sorted by null

1 2 3

  /hardware/bsp/intel/peripheral/libupm/examples/java/
LoL_exampleSample.java 46 sensor.setPixel(x, y, pixel);
  /external/deqp/framework/common/
tcuSurface.hpp 56 void setPixel (int x, int y, RGBA col);
70 inline void Surface::setPixel (int x, int y, RGBA col)
tcuTexture.hpp 388 void setPixel (const tcu::Vec4& color, int x, int y, int z = 0) const;
389 void setPixel (const tcu::IVec4& color, int x, int y, int z = 0) const;
390 void setPixel (const tcu::UVec4& color, int x, int y, int z = 0) const { setPixel(color.cast<int>(), x, y, z); }
    [all...]
  /cts/libs/deviceutil/src/android/cts/util/
BitmapUtils.java 62 bmp.setPixel(x, y, generator.nextInt(Integer.MAX_VALUE));
72 bmp.setPixel(x, y, Color.WHITE);
  /hardware/bsp/intel/peripheral/libupm/src/lol/
lol.cxx 171 unsigned char LoL::setPixel(int x, int y, unsigned char pixel)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
GraphicsUtilities.java 65 imageData.setPixel(x, y, 0x00000000);
NinePatchedImage.java 546 image.setPixel(x, 0, pixel);
555 image.setPixel(0, y, pixel);
564 image.setPixel(x, height - 1, pixel);
573 image.setPixel(width - 1, y, pixel);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 82 combinedBitmap.setPixel(i, j, Color.RED);
121 grid.setPixel(i, j, colors[k]);
BitmapFactoryTest.java 705 argb.setPixel(x, y, Color.rgb(grayByte, grayByte, grayByte));
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
BitmapFilterTests.java 65 bitmap.setPixel(i, j, isWhite ? Color.WHITE : Color.BLACK);
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.cxx 44 GFX::setPixel (int x, int y, uint16_t color) {
102 setPixel(y0, x0, color);
104 setPixel(x0, y0, color);
129 setPixel(x0 , y0+r, color);
130 setPixel(x0 , y0-r, color);
131 setPixel(x0+r, y0 , color);
132 setPixel(x0-r, y0 , color);
145 setPixel(x0 + x, y0 + y, color);
146 setPixel(x0 - x, y0 + y, color);
147 setPixel(x0 + x, y0 - y, color)
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
PreAlpha.java 142 outRaster.setPixel(x, y, color);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Gdx2DPixmap.java 165 public void setPixel (int x, int y, int color) {
166 setPixel(basePtr, x, y, color);
318 private static native void setPixel (long pixmap, int x, int y, int color); /*
  /external/opencv3/modules/java/android_test/src/org/opencv/test/android/
UtilsTest.java 142 bmp.setPixel(x, y, color);
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Image.cpp 72 int32_t CJBig2_Image::setPixel(int32_t x, int32_t y, FX_BOOL v) {
    [all...]
  /external/skia/src/codec/
SkBmpRLECodec.cpp 201 void SkBmpRLECodec::setPixel(void* dst, size_t dstRowBytes,
422 setPixel(dst, dstRowBytes, dstInfo, x++,
426 setPixel(dst, dstRowBytes, dstInfo,
434 setPixel(dst, dstRowBytes, dstInfo, x++,
497 setPixel(dst, dstRowBytes, dstInfo, x, y, indices[which]);
  /external/skia/tests/
BitmapCopyTest.cpp 79 // setPixel()
115 static void setPixel(int x, int y, uint32_t val, SkBitmap& bm) {
180 setPixel(coords[i]->fX, coords[i]->fY, i, bm);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 292 destData.setPixel(dx, dy, srcData.getPixel(sx, sy));
307 destData.setPixel(dx, dy, srcData.getPixel(sx, sy));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtilsTest.java 337 data.setPixel(x, y, pixelValue);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Pixmap.java 325 pixmap.setPixel(x, y, color);
334 pixmap.setPixel(x, y, color);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 302 destData.setPixel(y, srcData.width - x - 1, srcData.getPixel(x, y));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
StretchesViewer.java 133 mContentAreaImageData.setPixel(x, y, PADDING_COLOR);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 410 bSrc.setPixel(i, j, 9);
411 bDst.setPixel(i, j, 0);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 289 void setPixel (const tcu::Vec4& color, int x, int y) const;
300 inline void SurfaceAccess::setPixel (const tcu::Vec4& color, int x, int y) const
303 m_surface->setPixel(m_x+x, m_y+y, toRGBAMasked(color, m_colorMask));
  /external/v8/benchmarks/
raytrace.js 626 setPixel: function(x, y, color){
663 this.setPixel(x, y, color);

Completed in 1768 milliseconds

1 2 3