Lines Matching refs:isAlphaOnly
541 const bool isAlphaOnly = isAlphaOnlyFormat(m_format);
542 const deUint32 componentCount (isAlphaOnly ? 4u : tcu::getNumUsedChannels(tcuFormat.order));
553 return Vec4((componentCount >= 1 && !isAlphaOnly) ? 1.5f * getRepresentableDiffUnorm(m_format, 0) : 0.0f,
554 (componentCount >= 2 && !isAlphaOnly) ? 1.5f * getRepresentableDiffUnorm(m_format, 1) : 0.0f,
555 (componentCount >= 3 && !isAlphaOnly) ? 1.5f * getRepresentableDiffUnorm(m_format, 2) : 0.0f,
1058 const bool isAlphaOnly = isAlphaOnlyFormat(m_format);
1059 const int componentCount (isAlphaOnly ? 4 : tcu::getNumUsedChannels(format.order));
1090 ? Vec4((isAlphaOnly ? 0.0f : clearValue),
1091 componentCount > 1 && !isAlphaOnly ? clearValue : 0.0f,
1092 componentCount > 2 && !isAlphaOnly ? clearValue : 0.0f,
1095 ? Vec4((isAlphaOnly ? 0.0f : renderValue),
1096 componentCount > 1 && !isAlphaOnly ? renderValue : 0.0f,
1097 componentCount > 2 && !isAlphaOnly ? renderValue : 0.0f,
1403 const bool isAlphaOnly = isAlphaOnlyFormat(m_format);
1404 const int componentCount (isAlphaOnly ? 4 : tcu::getNumUsedChannels(format.order));
1416 expectedAverage = Vec4((isAlphaOnly ? 0.0f : 0.5f), componentCount > 1 && !isAlphaOnly ? 0.5f : 0.0f, componentCount > 2 && !isAlphaOnly ? 0.5f : 0.0f, componentCount > 3 ? 0.5f : 1.0f);