• Home
  • Raw
  • Download

Lines Matching refs:po_id

400 bool TestCaseBase::buildProgramVA(glw::GLuint po_id, bool* out_has_compilation_failed, unsigned int…  in buildProgramVA()  argument
454 gl.attachShader(po_id, sh_id); in buildProgramVA()
475 gl.linkProgram(po_id); in buildProgramVA()
478 gl.getProgramiv(po_id, GL_LINK_STATUS, &link_status); in buildProgramVA()
484 std::string link_log = getLinkingInfoLog(po_id); in buildProgramVA()
522 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_bo… in buildProgram() argument
525 …return buildProgramVA(po_id, out_has_compilation_failed, 1, sh1_shader_id, n_sh1_body_parts, sh1_b… in buildProgram()
547 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_bo… in buildProgram() argument
552 …return buildProgramVA(po_id, out_has_compilation_failed, 2, sh1_shader_id, n_sh1_body_parts, sh1_b… in buildProgram()
581 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_bo… in buildProgram() argument
587 …return buildProgramVA(po_id, out_has_compilation_failed, 3, sh1_shader_id, n_sh1_body_parts, sh1_b… in buildProgram()
619 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_bo… in buildProgram() argument
627 …return buildProgramVA(po_id, out_has_compilation_failed, 4, sh1_shader_id, n_sh1_body_parts, sh1_b… in buildProgram()
663 bool TestCaseBase::buildProgram(glw::GLuint po_id, glw::GLuint sh1_shader_id, unsigned int n_sh1_bo… in buildProgram() argument
672 …return buildProgramVA(po_id, out_has_compilation_failed, 5, sh1_shader_id, n_sh1_body_parts, sh1_b… in buildProgram()
864 std::string TestCaseBase::getLinkingInfoLog(glw::GLuint po_id) in getLinkingInfoLog() argument
866 return getInfoLog(LT_PROGRAM_OBJECT, po_id); in getLinkingInfoLog()