Lines Matching defs:message
152 std::vector<GLchar> message;
157 message.resize(message_length + 1);
159 gl.getShaderInfoLog(id, message_length, &message_length, &message[0]);
164 m_log << tcu::TestLog::Message << "Compilation log:\n" << &message[0] << tcu::TestLog::EndMessage;
223 std::vector<GLchar> message;
228 message.resize(message_length + 1);
230 gl.getProgramInfoLog(id, message_length, &message_length, &message[0]);
235 m_log << tcu::TestLog::Message << "Link log:\n" << &message[0] << tcu::TestLog::EndMessage;
269 std::string message = "Required extension is not supported: ";
270 message.append(extension_name);
272 throw tcu::NotSupportedError(message);
410 std::stringstream message;
411 message << "VertexAttribLPointer(..., " << glu::getTypeName(type) << " /* type */, ...)";
414 verifyError(GL_INVALID_ENUM, message.str().c_str(), __LINE__, result);
443 std::stringstream message;
444 message << "VertexAttribLPointer(..., " << pointer << " /* pointer */)";
447 verifyError(GL_INVALID_OPERATION, message.str().c_str(), __LINE__, result);
549 /** Verify that GetError returns expected error code. In case of failure logs error message.
1030 /** Logs message informing that values got with GetVertexAttribLdv do not match set with "function_name"
1044 tcu::MessageBuilder message = m_log << tcu::TestLog::Message;
1045 message << "Values set with " << function_name << " [";
1049 message << std::setprecision(24) << set_values[i];
1053 message << ", ";
1057 message << "]" << tcu::TestLog::EndMessage;
1059 message = m_log << tcu::TestLog::Message;
1060 message << "Values got with GetVertexAttribLdv"
1065 message << std::setprecision(24) << get_values[i];
1069 message << ", ";
1073 message << "]" << tcu::TestLog::EndMessage;
2188 tcu::MessageBuilder message = m_log << tcu::TestLog::Message;
2193 message << "Iteration: double + dvec2";
2197 message << "Iteration: devc3 + dvec4";
2201 message << "Iteration: dmat2";
2205 message << "Iteration: dmat3x2 + dmat4x2";
2209 message << "Iteration: dmat2x3 + dmat2x4";
2213 message << "Iteration: dmat3 + dmat3x4";
2217 message << "Iteration: dmat4x3 + dmat4";
2222 message << "Configuration: ";
2226 message << "arrayed attributes";
2230 message << "separate attributes";
2233 message << ", ";
2237 message << "reversed locations";
2241 message << "default locations";
2244 message << ", ";
2249 message << "vertex attribute divisor: 0";
2253 message << "constant vertex attribute";
2257 message << "vertex attribute divisor: 1";
2262 message << tcu::TestLog::EndMessage;