Lines Matching defs:function_name
328 void verifyError(GLenum expected_error, const char* function_name, int line_number, bool& result);
552 * @param function_name Name of function to log in case of error
556 void ApiErrorsTest::verifyError(GLenum expected_error, const char* function_name, int line_number, bool& result)
568 m_log << tcu::TestLog::Message << "Operation: " << function_name << tcu::TestLog::EndMessage;
660 bool verifyResults(const GLdouble* set_values, GLuint length, GLuint index, const char* function_name,
665 void logError(const GLdouble* set_values, const GLdouble* get_values, GLuint length, const char* function_name,
757 std::stringstream function_name;
759 function_name << "VertexAttribL" << SIZE << "d";
766 GLU_EXPECT_NO_ERROR(gl.getError(), function_name.str().c_str());
768 if (false == verifyResults(vertex_attribute.m_array, SIZE, index, function_name.str().c_str(), __LINE__))
786 std::stringstream function_name;
788 function_name << "VertexAttribL" << SIZE << "dv";
795 GLU_EXPECT_NO_ERROR(gl.getError(), function_name.str().c_str());
797 if (false == verifyResults(vertex_attribute.m_array, SIZE, index, function_name.str().c_str(), __LINE__))
1030 /** Logs message informing that values got with GetVertexAttribLdv do not match set with "function_name"
1032 * @param set_values Values set with "function_name"
1035 * @param function_name Name of function used to set vertex attributes
1037 * @param line_number Line number refereing to location of "function_name"
1040 const char* function_name, GLuint index, int line_number) const
1045 message << "Values set with " << function_name << " [";
1132 * @param function_name Name of function used to set, it will be used for error logging
1133 * @param line_number Line number refering to location of "function_name", used to log errors
1138 const char* function_name, int line_number) const
1147 logError(set_values, results, length, function_name, index, line_number);