Home | History | Annotate | Download | only in functional

Lines Matching defs:isUintFormat

1168 		const bool			isUintFormat			= isFormatTypeUnsignedInteger(m_format.type);
1170 const string colorBaseExpr = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4(gx^gy^gz, "
1934 const bool isUintFormat = isFormatTypeUnsignedInteger(m_format.type);
2007 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4";
2014 const string atomicArgExpr = (isUintFormat ? "uint"
2335 const bool isUintFormat = isFormatTypeUnsignedInteger(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";
2555 const bool isUintFormat = isFormatTypeUnsignedInteger(m_format.type);
2594 const string colorVecTypeName = string(isUintFormat ? "u" : isIntFormat ? "i" : "") + "vec4";
2595 const char* const colorScalarTypeName = isUintFormat ? "uint" : isIntFormat ? "int" : "float";