Lines Matching defs:isIntFormat
1169 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type);
1170 const string colorBaseExpr = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4(gx^gy^gz, "
1935 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type);
2007 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4";
2015 : isIntFormat ? ""
2336 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type);
2343 DE_ASSERT(isUintFormat || isIntFormat);
2408 const string colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : DE_NULL;
2409 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : DE_NULL) + "vec4";
2556 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type);
2594 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4";
2595 const char* const colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : "float";