Lines Matching defs:log
119 tcu::TestLog& operator<< (tcu::TestLog& log, const StencilParams& params)
121 log << TestLog::Message << " func = " << glu::getCompareFuncStr(params.function) << "\n"
129 return log;
132 tcu::TestLog& operator<< (tcu::TestLog& log, const DepthStencilParams& params)
134 log << TestLog::Message << "Stencil test: " << (params.stencilTestEnabled ? "enabled" : "disabled") << TestLog::EndMessage;
137 log << TestLog::Message << "Front-face stencil state: " << TestLog::EndMessage;
138 log << params.stencil[rr::FACETYPE_FRONT];
140 log << TestLog::Message << "Back-face stencil state: " << TestLog::EndMessage;
141 log << params.stencil[rr::FACETYPE_BACK];
144 log << TestLog::Message << "Depth test: " << (params.depthTestEnabled ? "enabled" : "disabled") << TestLog::EndMessage;
147 log << TestLog::Message << " func = " << glu::getCompareFuncStr(params.depthFunc) << "\n"
153 log << TestLog::Message << "Triangles are " << (params.visibleFace == rr::FACETYPE_FRONT ? "front" : "back") << "-facing" << TestLog::EndMessage;
155 return log;