/external/deqp/framework/common/ |
tcuRGBA.hpp | 81 int getBlue (void) const { return (m_value >> BLUE_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(); } 121 deAbs32(a.getBlue() - b.getBlue()), 133 (int)(it*(float)a.getBlue() + t*(float)b.getBlue() + 0.5f), 147 deMax32(a.getBlue(), b.getBlue()), [all...] |
tcuRGBA.cpp | 50 float(getBlue()) / 255.0f, 56 return IVec4(getRed(), getGreen(), getBlue(), getAlpha());
|
tcuPixelFormat.hpp | 95 convertChannel(col.getBlue(), blueBits),
|
tcuSurface.hpp | 85 *((deUint8*)pixAddr + 2) = (deUint8)col.getBlue();
|
/external/deqp/framework/egl/ |
egluConfigFilter.cpp | 74 << (ConfigBlueSize() == bits.getBlue()) 84 << (ConfigBlueSize() >= bits.getBlue())
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
DrawUtils.java | 342 int b = Math.max(0, Math.min(color.getBlue() + delta, 255)); 357 + c.getBlue() 358 * c.getBlue()
|
/external/deqp/modules/gles2/functional/ |
es2fColorClearTest.cpp | 204 if ((clearMask & 0x4) && !(spanKnownMask & 0x4)) spanColor.setBlue(clearCol.getBlue()); 246 colorThreshold.setBlue(colorThreshold.getBlue() + 1);
|
es2fDefaultVertexAttributeTests.cpp | 443 de::abs(color.getBlue() - refColor.getBlue()) > colorThreshold.getBlue())
|
es2fDepthStencilClearTests.cpp | 488 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getBlue(), oldColor.getAlpha());
|
es2fTextureCompletenessTests.cpp | 98 result.getPixel(x, y).getBlue() != color.getBlue() || [all...] |
es2fRasterizationTests.cpp | [all...] |
/external/deqp/modules/gles3/functional/ |
es3fColorClearTest.cpp | 204 if ((clearMask & 0x4) && !(spanKnownMask & 0x4)) spanColor.setBlue(clearCol.getBlue()); 246 colorThreshold.setBlue(colorThreshold.getBlue() + 1);
|
es3fDefaultVertexAttributeTests.cpp | 520 de::abs(color.getBlue() - refColor.getBlue()) > colorThreshold.getBlue())
|
es3fTextureSwizzleTests.cpp | 54 case GL_BLUE: return c.getBlue();
|
es3fDepthStencilClearTests.cpp | 491 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getBlue(), oldColor.getAlpha());
|
es3fRasterizerDiscardTests.cpp | 385 if (pixels.getPixel(x,y).getBlue() != 0)
|
/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 | 83 << ((m_threshold[2] >= 255) ? ("*") : (de::toString(m_color.getBlue()))) << ")" 108 if (testColor.getBlue() != 255) 171 const tcu::Vec2 avgPosition (testColor.getGreen() / 255.0f, testColor.getBlue() / 255.0f); 740 samplePositions[sampleNdx] = tcu::Vec2(color.getGreen() / 255.0f, color.getBlue() / 255.0f); 810 colorSum.y() += color.getBlue(); [all...] |
es31fShaderHelperInvocationTests.cpp | 545 const bool nonZeroDeriv = resPix.getBlue() > 0;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
HtmlTooltipHelper.java | 293 colorString += Integer.toHexString(color.getBlue());
|
/external/deqp/modules/gles31/stress/ |
es31sTessellationGeometryInteractionTests.cpp | 395 if (color.getGreen() < 255 - threshold || color.getBlue() > threshold)
|
es31sVertexAttributeBindingTests.cpp | 96 if (de::abs(pixel.getBlue() - 0) > colorThreshold)
|
/external/deqp/modules/glshared/ |
glsVertexArrayTests.cpp | [all...] |
glsDrawTest.cpp | [all...] |
glsTextureTestUtil.hpp | 262 c.getBlue() / 255.0f,
|