Lines Matching defs:uniform_name
1933 * @param uniform_name Name of image uniform
1936 const glw::GLchar* uniform_name) const
1945 GLint location = program.getUniformLocation(uniform_name);
1954 * @param uniform_name Name of sampler uniform
1957 const glw::GLchar* uniform_name) const
1967 GLint location = program.getUniformLocation(uniform_name);
18194 * @param uniform_name Subroutine uniform name
18198 GLint Utils::program::getSubroutineUniformLocation(const glw::GLchar* uniform_name, glw::GLenum shader_stage) const
18203 location = gl.getSubroutineUniformLocation(m_program_object_id, shader_stage, uniform_name);
18208 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Subroutine uniform: " << uniform_name
18237 * @param uniform_name Subroutine uniform name
18241 GLint Utils::program::getUniformLocation(const glw::GLchar* uniform_name) const
18246 location = gl.getUniformLocation(m_program_object_id, uniform_name);
18251 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Uniform: " << uniform_name
18392 void Utils::program::uniform(const glw::GLchar* uniform_name, TYPES type, glw::GLuint n_columns, glw::GLuint n_rows,
18397 GLuint location = getUniformLocation(uniform_name);