Lines Matching refs:po_id

391  * @param po_id                      Program handle
404 bool TestCaseBase::buildProgramVA(glw::GLuint po_id, bool* out_has_compilation_failed, unsigned int sh_stages, ...)
458 gl.attachShader(po_id, sh_id);
479 gl.linkProgram(po_id);
482 gl.getProgramiv(po_id, GL_LINK_STATUS, &link_status);
488 std::string link_log = getLinkingInfoLog(po_id);
518 * @param po_id ID of program object
526 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_body_parts,
529 return buildProgramVA(po_id, out_has_compilation_failed, 1, sh1_shader_id, n_sh1_body_parts, sh1_body_parts);
539 * @param po_id ID of program object
551 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_body_parts,
556 return buildProgramVA(po_id, out_has_compilation_failed, 2, sh1_shader_id, n_sh1_body_parts, sh1_body_parts,
567 * @param po_id ID of program object
585 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_body_parts,
591 return buildProgramVA(po_id, out_has_compilation_failed, 3, sh1_shader_id, n_sh1_body_parts, sh1_body_parts,
603 * @param po_id ID of program object
623 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_body_parts,
631 return buildProgramVA(po_id, out_has_compilation_failed, 4, sh1_shader_id, n_sh1_body_parts, sh1_body_parts,
643 * @param po_id ID of program object
667 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_body_parts,
676 return buildProgramVA(po_id, out_has_compilation_failed, 5, sh1_shader_id, n_sh1_body_parts, sh1_body_parts,
861 * @param po_id.
863 * @param po_id GLES id of a program object to retrieve linking
868 std::string TestCaseBase::getLinkingInfoLog(glw::GLuint po_id)
870 return getInfoLog(LT_PROGRAM_OBJECT, po_id);