Lines Matching refs:isIntFormat
1170 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
1171 …const string colorBaseExpr = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4(gx^gy^… in iterate()
1936 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
2008 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4"; in iterate()
2016 : isIntFormat ? "" in iterate()
2337 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
2344 DE_ASSERT(isUintFormat || isIntFormat); in iterate()
2409 const string colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : DE_NULL; in iterate()
2410 …const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : DE_NULL) + "vec4"; in iterate()
2557 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
2595 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4"; in iterate()
2596 const char* const colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : "float"; in iterate()