Lines Matching defs:name

1745 /** Returns name of an uniform bound to user-provided location.
1747 * @param location Location of the uniform to return the name for.
3543 /** Get name of shader stage
3611 /* Prepare uniform name */
3793 /* Varying name */
4342 glw::GLchar name[16];
4345 name);
4348 if ((1 != size) || (GL_INT != type) || (0 != strcmp("result", name)))
4353 << ". Name: " << name << " expected: result" << tcu::TestLog::EndMessage;
4941 /* Uniform name = UNIFORM_BLOCK_NAME.UNIFORM_NAME */
5079 /** Get "name" of buffer layout
5333 m_uniform_details.push_back(uniformDetails(48 /* off */, "double_value" /* name */, 1 /* n_columns */,
5335 m_uniform_details.push_back(uniformDetails(64 /* off */, "dvec2_value" /* name */, 1 /* n_columns */,
5337 m_uniform_details.push_back(uniformDetails(96 /* off */, "dvec3_value" /* name */, 1 /* n_columns */,
5339 m_uniform_details.push_back(uniformDetails(192 /* off */, "dvec4_value" /* name */, 1 /* n_columns */,
5341 m_uniform_details.push_back(uniformDetails(272 /* off */, "dmat2_value" /* name */, 2 /* n_columns */,
5343 m_uniform_details.push_back(uniformDetails(320 /* off */, "dmat3_value" /* name */, 3 /* n_columns */,
5345 m_uniform_details.push_back(uniformDetails(448 /* off */, "dmat4_value" /* name */, 4 /* n_columns */,
5347 m_uniform_details.push_back(uniformDetails(576 /* off */, "dmat2x3_value" /* name */, 2 /* n_columns */,
5349 m_uniform_details.push_back(uniformDetails(672 /* off */, "dmat2x4_value" /* name */, 2 /* n_columns */,
5351 m_uniform_details.push_back(uniformDetails(736 /* off */, "dmat3x2_value" /* name */, 3 /* n_columns */,
5353 m_uniform_details.push_back(uniformDetails(800 /* off */, "dmat3x4_value" /* name */, 3 /* n_columns */,
5355 m_uniform_details.push_back(uniformDetails(912 /* off */, "dmat4x2_value" /* name */, 4 /* n_columns */,
5357 m_uniform_details.push_back(uniformDetails(992 /* off */, "dmat4x3_value" /* name */, 4 /* n_columns */,
5503 /* Select name for varying that will hold result of "that" shader_stage */
5682 /** Write name uniform blcok definition with specific layout to stream
6776 /* Determine maximum uniform name length */
6793 /* array size */ /* name */ /* type */ /* location */
6826 current_item.name = std::string(stage_prefix) + current_item.name;
6842 glw::GLuint resource_index = gl.getProgramResourceIndex(po_id, GL_UNIFORM, current_item.name.c_str());
6853 if (current_item.name.length() != (glw::GLuint)retrieved_name_length ||
6854 memcmp(m_uniform_name_buffer, current_item.name.c_str(), retrieved_name_length) != 0)
6856 m_testCtx.getLog() << tcu::TestLog::Message << "Invalid uniform name was reported at index ["
6859 << current_item.name << "]"
6886 << current_item.name << "]"
6897 << current_item.name << "]"
8283 /* What is the current stage's name? */
9291 /* Store the varying name */
10477 /* What is the current stage's name? */
12752 std::string name;
12926 void logVariableType(const glw::GLvoid* buffer, const glw::GLchar* name, Utils::_variable_type type) const;
13555 * @param function_name Function name
13656 /** Get function name
13658 * @return Function name
14606 /** Get name of uniform that will be used as <argument>.
14628 /** Get name of varying that will be used as <result>.
14734 /** Logs variable of given type: name (type) [values]
14737 * @param name Name of variable
14740 void BuiltinFunctionTest::logVariableType(const glw::GLvoid* buffer, const glw::GLchar* name,
14747 message << name << " (" << Utils::getVariableTypeString(type) << ") [";
15451 std::string name;
15512 std::string caseName = bf.name + "_" + typeDefinition[j].name;