HomeSort by relevance Sort by last modified time
    Searched refs:pixelValue (Results 1 - 10 of 10) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 74 byte pixelValue = (byte) ((argb8 & 0xFF000000) >> 24);
75 this.alpha = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
76 pixelValue = (byte) ((argb8 & 0xFF0000) >> 16);
77 this.red = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
78 pixelValue = (byte) ((argb8 & 0xFF00) >> 8);
79 this.green = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderAWT.java 96 byte pixelValue = data.get();// at least one byte is always taken :)
97 float firstPixelValue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
101 pixelValue = data.get();
102 materialColor[1] = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
103 pixelValue = data.get();
104 materialColor[2] = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
    [all...]
TextureBlenderLuminance.java 79 byte pixelValue = data.get();// at least one byte is always taken
80 float firstPixelValue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
88 pixelValue = data.get();
89 result[1] = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 79 int pixelValue = 0;
83 pixelValue += inputImage[
88 pixelValue = pixelValue / (heightScale * widthScale);
90 (unsigned char) pixelValue;
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEDisplacementMap.cpp 134 unsigned char pixelValue = srcPixelArrayA->get(srcY * stride + srcX * 4 + channel);
135 dstPixelArray->set(dstIndex + channel, pixelValue);
  /external/opencv/cvaux/src/
cvbgfg_gaussmix.cpp 578 uchar pixelValue = (uchar)255; // will switch to 0 if match found
589 pixelValue = 0;
594 bg_model->foreground->imageData[ bg_model->foreground->widthStep*i + j] = pixelValue;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtilsTest.java 336 int pixelValue = (y & 0xFF) << 16 | (x & 0xFF) << 8;
337 data.setPixel(x, y, pixelValue);
  /frameworks/native/libs/gui/tests/
CpuConsumer_test.cpp 341 uint32_t pixelValue = ((maxBlockX % 2) == (maxBlockY % 2)) ? 191 : 63;
342 checkPixel(buf, w-1, h-1, pixelValue);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 286 milliseconds