/external/deqp/framework/common/ |
tcuRGBA.hpp | 79 int getRed (void) const { return (m_value >> RED_SHIFT) & 0xFF; } 85 bool isBelowThreshold (RGBA thr) const { return (getRed() <= thr.getRed()) && (getGreen() <= thr.getGreen()) && (getBlue() <= thr.getBlue()) && (getAlpha() <= thr.getAlpha()); } 88 void toBytes (deUint8* bytes) const { bytes[0] = getRed(); bytes[1] = getGreen(); bytes[2] = getBlue(); bytes[3] = getAlpha(); } 119 deAbs32(a.getRed() - b.getRed()), 131 (int)(it*(float)a.getRed() + t*(float)b.getRed() + 0.5f), 145 return RGBA(deMax32(a.getRed(), b.getRed()), [all...] |
tcuRGBA.cpp | 48 return Vec4(float(getRed()) / 255.0f, 56 return IVec4(getRed(), getGreen(), getBlue(), getAlpha());
|
tcuPixelFormat.hpp | 93 return RGBA(convertChannel(col.getRed(), redBits),
|
tcuSurface.hpp | 83 *((deUint8*)pixAddr + 0) = (deUint8)col.getRed();
|
/external/deqp/framework/egl/ |
egluConfigFilter.cpp | 72 list << (ConfigRedSize() == bits.getRed()) 82 list << (ConfigRedSize() >= bits.getRed())
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
DrawUtils.java | 340 int r = Math.max(0, Math.min(color.getRed() + delta, 255)); 351 (int) Math.sqrt(c.getRed() 352 * c.getRed()
|
/external/deqp/modules/gles2/functional/ |
es2fColorClearTest.cpp | 202 if ((clearMask & 0x1) && !(spanKnownMask & 0x1)) spanColor.setRed(clearCol.getRed()); 244 colorThreshold.setRed(colorThreshold.getRed() + 1);
|
es2fDefaultVertexAttributeTests.cpp | 441 if (de::abs(color.getRed() - refColor.getRed()) > colorThreshold.getRed() ||
|
es2fDepthStencilClearTests.cpp | 440 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), oldColor.getGreen(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getAlpha()); 488 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getBlue(), oldColor.getAlpha());
|
es2fShaderInvarianceTests.cpp | 370 if (col.getRed() != 0) [all...] |
es2fTextureCompletenessTests.cpp | 96 if (result.getPixel(x, y).getRed() != color.getRed() || [all...] |
/external/deqp/modules/gles3/functional/ |
es3fColorClearTest.cpp | 202 if ((clearMask & 0x1) && !(spanKnownMask & 0x1)) spanColor.setRed(clearCol.getRed()); 244 colorThreshold.setRed(colorThreshold.getRed() + 1);
|
es3fDefaultVertexAttributeTests.cpp | 518 if (de::abs(color.getRed() - refColor.getRed()) > colorThreshold.getRed() ||
|
es3fDepthStencilClearTests.cpp | 443 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), oldColor.getGreen(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getAlpha()); 491 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getBlue(), oldColor.getAlpha());
|
es3fTextureSwizzleTests.cpp | 52 case GL_RED: return c.getRed();
|
es3fRasterizerDiscardTests.cpp | 388 if (pixels.getPixel(x,y).getRed() != 0)
|
es3fShaderInvarianceTests.cpp | 370 if (col.getRed() != 0) [all...] |
/external/deqp/modules/gles31/functional/ |
es31fShaderTextureSizeTests.cpp | 463 if (color.getRed() < colorThresholdRed && color.getGreen() > 255 - colorThresholdGreen && color.getBlue() < colorThresholdBlue) 469 else if (color.getRed() > 255 - colorThresholdRed && color.getGreen() < colorThresholdGreen && color.getBlue() < colorThresholdBlue)
|
es31fSampleVariableTests.cpp | 81 << ((m_threshold[0] >= 255) ? ("*") : (de::toString(m_color.getRed()))) << ", " 104 if (testColor.getRed() != 0) 129 return testColor.getRed() == 0; 809 colorSum.x() += color.getRed(); [all...] |
es31fSampleShadingTests.cpp | 589 const deUint32 packed = ((deUint32)color.getRed()) + ((deUint32)color.getGreen() << 8) + ((deUint32)color.getGreen() << 16);
|
es31fShaderMultisampleInterpolationTests.cpp | 64 if (color.getRed() > 0 || color.getGreen() < 255-greenThreshold || color.getBlue() > 0) 146 const deUint32 packed = ((deUint32)color.getRed()) + ((deUint32)color.getGreen() << 8) + ((deUint32)color.getGreen() << 16); [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
HtmlTooltipHelper.java | 291 String colorString = "#" + Integer.toHexString(color.getRed());
|
/external/deqp/modules/glshared/ |
glsVertexArrayTests.cpp | [all...] |
glsDrawTest.cpp | [all...] |
glsTextureTestUtil.hpp | 260 return tcu::Vec4(c.getRed() / 255.0f,
|