Lines Matching refs:fmt
61 std::ostream& operator<< (std::ostream& str, PointerFmt<T> fmt)
63 if (fmt.arr != DE_NULL)
66 for (deUint32 ndx = 0; ndx < fmt.size; ndx++)
70 str << fmt.arr[ndx];
98 inline std::ostream& operator<< (std::ostream& str, EnumPointerFmt fmt)
100 if (fmt.value)
101 return str << tcu::Format::Enum<int, 2>(fmt.getName, *fmt.value);
120 inline std::ostream& operator<< (std::ostream& str, StringFmt fmt)
122 return str << (fmt.str ? fmt.str : "NULL");
139 inline std::ostream& operator<< (std::ostream& str, const ConfigAttribValuePointerFmt& fmt)
141 if (fmt.value)
142 return str << getConfigAttribValueStr(fmt.attrib, *fmt.value);
159 inline std::ostream& operator<< (std::ostream& str, const ContextAttribValuePointerFmt& fmt)
161 if (fmt.value)
162 return str << getContextAttribValueStr(fmt.attrib, *fmt.value);
179 inline std::ostream& operator<< (std::ostream& str, const SurfaceAttribValuePointerFmt& fmt)
181 if (fmt.value)
182 return str << getSurfaceAttribValueStr(fmt.attrib, *fmt.value);
198 inline std::ostream& operator<< (std::ostream& str, const EGLDisplayFmt& fmt)
200 if (fmt.display == EGL_NO_DISPLAY)
203 return str << toHex(fmt.display);
217 inline std::ostream& operator<< (std::ostream& str, const EGLSurfaceFmt& fmt)
219 if (fmt.surface == EGL_NO_SURFACE)
222 return str << toHex(fmt.surface);
236 inline std::ostream& operator<< (std::ostream& str, const EGLContextFmt& fmt)
238 if (fmt.context == EGL_NO_CONTEXT)
241 return str << toHex(fmt.context);