Lines Matching refs:attribFmt
30 std::ostream& operator<< (std::ostream& str, const ConfigAttribValueFmt& attribFmt) in operator <<() argument
32 switch (attribFmt.attribute) in operator <<()
35 return str << getColorBufferTypeStr(attribFmt.value); in operator <<()
38 return str << getConfigCaveatStr(attribFmt.value); in operator <<()
42 return str << getAPIBitsStr(attribFmt.value); in operator <<()
45 return str << getSurfaceBitsStr(attribFmt.value); in operator <<()
48 if (attribFmt.value == EGL_NONE) in operator <<()
51 return str << tcu::toHex(attribFmt.value); in operator <<()
54 return str << getTransparentTypeStr(attribFmt.value); in operator <<()
59 return str << getBoolDontCareStr(attribFmt.value); in operator <<()
79 return str << (int)attribFmt.value; in operator <<()
82 return str << tcu::toHex(attribFmt.value); in operator <<()
86 std::ostream& operator<< (std::ostream& str, const ContextAttribValueFmt& attribFmt) in operator <<() argument
88 switch (attribFmt.attribute) in operator <<()
92 return str << (int)attribFmt.value; in operator <<()
95 return str << getAPIStr(attribFmt.value); in operator <<()
98 return str << getRenderBufferStr(attribFmt.value); in operator <<()
101 return str << tcu::toHex(attribFmt.value); in operator <<()
105 std::ostream& operator<< (std::ostream& str, const SurfaceAttribValueFmt& attribFmt) in operator <<() argument
107 switch (attribFmt.attribute) in operator <<()
115 return str << (int)attribFmt.value; in operator <<()
119 return str << getBoolDontCareStr(attribFmt.value); in operator <<()
122 return str << getMultisampleResolveStr(attribFmt.value); in operator <<()
125 return str << getRenderBufferStr(attribFmt.value); in operator <<()
128 return str << getSwapBehaviorStr(attribFmt.value); in operator <<()
131 return str << getTextureFormatStr(attribFmt.value); in operator <<()
134 return str << getTextureTargetStr(attribFmt.value); in operator <<()
137 return str << getAlphaFormatStr(attribFmt.value); in operator <<()
140 return str << getColorspaceStr(attribFmt.value); in operator <<()
143 return str << tcu::toHex(attribFmt.value); in operator <<()