Lines Matching refs:isIntFormat
1204 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
1205 …const string colorBaseExpr = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4(gx^gy^… in iterate()
1980 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
2064 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4"; in iterate()
2072 : isIntFormat ? "" in iterate()
2395 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
2402 DE_ASSERT(isUintFormat || isIntFormat); in iterate()
2479 const string colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : DE_NULL; in iterate()
2480 …const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : DE_NULL) + "vec4"; in iterate()
2627 const bool isIntFormat = isFormatTypeSignedInteger(m_format.type); in iterate() local
2665 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4"; in iterate()
2666 const char* const colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : "float"; in iterate()