Lines Matching defs:numInvocations

1500 						InvocationCountShader		(const glu::ContextType& contextType, int numInvocations, OutputCase testCase);
1507 static std::string genGeometrySource (const glu::ContextType& contextType, int numInvocations, OutputCase testCase);
1508 static size_t getNumVertices (int numInvocations, OutputCase testCase);
1514 InvocationCountShader::InvocationCountShader (const glu::ContextType& contextType, int numInvocations, OutputCase testCase)
1525 getNumVertices(numInvocations, testCase),
1526 numInvocations)
1527 << sglr::pdec::GeometrySource(genGeometrySource(contextType, numInvocations, testCase)))
1528 , m_numInvocations (numInvocations)
1602 std::string InvocationCountShader::genGeometrySource (const glu::ContextType& contextType, int numInvocations, OutputCase testCase)
1604 const int maxVertices = (int)getNumVertices(numInvocations, testCase);
1609 "layout(points, invocations = " << numInvocations << ") in;\n"
1617 " highp float l_angle = float(gl_InvocationID) / float(" << numInvocations << ") * 5.5;\n"
1668 size_t InvocationCountShader::getNumVertices (int numInvocations, OutputCase testCase)
1673 case CASE_DIFFERENT_OUTPUT_COUNTS: return (size_t)(2 + numInvocations);
1683 InstancedExpansionShader (const glu::ContextType& contextType, int numInvocations);
1692 static std::string genGeometrySource (const glu::ContextType& contextType, int numInvocations);
1697 InstancedExpansionShader::InstancedExpansionShader (const glu::ContextType& contextType, int numInvocations)
1707 numInvocations)
1708 << sglr::pdec::GeometrySource(genGeometrySource(contextType, numInvocations)))
1709 , m_numInvocations (numInvocations)
1778 std::string InstancedExpansionShader::genGeometrySource (const glu::ContextType& contextType, int numInvocations)
1784 "layout(points,invocations=" << numInvocations << ") in;\n"
1790 " highp float phase = float(gl_InvocationID) / float(" << numInvocations << ") * 6.3;\n"
4358 GeometryInvocationCase (Context& context, const char* name, const char* description, int numInvocations, OutputCase testCase);
4375 GeometryInvocationCase::GeometryInvocationCase (Context& context, const char* name, const char* description, int numInvocations, OutputCase testCase)
4378 , m_numInvocations (numInvocations)
4494 DrawInstancedGeometryInstancedCase (Context& context, const char* name, const char* description, int numInstances, int numInvocations);
4508 DrawInstancedGeometryInstancedCase::DrawInstancedGeometryInstancedCase (Context& context, const char* name, const char* description, int numInstances, int numInvocations)
4511 , m_numInvocations (numInvocations)
6362 int numInvocations;
6379 invocationCases[ndx].numInvocations,
6384 if (invocationCases[ndx].numInvocations != 1)
6388 invocationCases[ndx].numInvocations,