Lines Matching refs:isUintFormat
1203 const bool isUintFormat = isFormatTypeUnsignedInteger(m_format.type); in iterate() local
1205 …const string colorBaseExpr = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4(gx^gy^… in iterate()
1979 const bool isUintFormat = isFormatTypeUnsignedInteger(m_format.type); in iterate() local
2064 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4"; in iterate()
2071 const string atomicArgExpr = (isUintFormat ? "uint" in iterate()
2394 const bool isUintFormat = isFormatTypeUnsignedInteger(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()
2626 const bool isUintFormat = isFormatTypeUnsignedInteger(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()