Home | History | Annotate | Download | only in functional

Lines Matching defs:isIntFormat

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