Lines Matching defs:program

105 	bool CheckProgram(GLuint program, bool* compile_error = NULL)
109 glGetProgramiv(program, GL_LINK_STATUS, &status);
114 glGetProgramiv(program, GL_ATTACHED_SHADERS, &attached_shaders);
119 glGetAttachedShaders(program, attached_shaders, NULL, &shaders[0]);
186 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &length);
190 glGetProgramInfoLog(program, length, NULL, &log[0]);
1722 "3. Verify that re-linking CS program works as expected.";
1729 "3. Verify that uniform variables were updated correctly." NL "4. Re-link CS program." NL
1871 // re-link program (all uniforms will be set to zero)
2444 return "Building CS monolithic program";
2449 return NL "1. Verify that building monolithic CS program works as expected." NL
2450 "2. Verify that program consisting from 3 compilation units links as expected." NL
2457 "2. Dispatch and verify CS program.";
2549 return "Building CS separable program";
2554 return NL "1. Verify that building separable CS program works as expected." NL
2555 "2. Verify that program consisting from 4 strings works as expected.";
2561 "2. Dispatch and verify CS program.";
3176 "MemoryBarrier command." NL "2. Verify that ProgramParameteri(program, GL_PROGRAM_SEPARABLE, "
3301 "2. Verify that CS program selected with UseProgram is dispatched even if there is active" NL
3332 /* create program A */
5450 "ProgramUniform* commands." NL "3. Verify that re-linking CS program works as expected.";
5456 "3. Verify that uniform variables were updated correctly." NL "4. Re-link CS program." NL
5579 // re-link program (all uniforms will be set to zero)
5956 return NL "API errors - no active program";
5985 << "DispatchComputeIndirect if there is no active program for the compute\n"
6003 << "DispatchComputeIndirect if there is no active program for the compute\n"
6027 << "DispatchComputeIndirect if there is no active program for the compute\n"
6045 << "DispatchComputeIndirect if there is no active program for the compute\n"
6261 return NL "API errors - program state";
6300 << "COMPUTE_LOCAL_WORK_SIZE and either the program has not been linked\n"
6314 << "COMPUTE_LOCAL_WORK_SIZE and either the program has not been linked\n"
6349 << tcu::TestLog::Message << "LinkProgram will fail if <program> contains a combination"
6698 addChild(new TestSubcase(m_context, "api-no-active-program", TestSubcase::Create<NegativeAPINoActiveProgram>));
6701 addChild(new TestSubcase(m_context, "api-program", TestSubcase::Create<NegativeAPIProgram>));