Home | History | Annotate | Download | only in functional

Lines Matching refs:numInvocations

1471 						InvocationCountShader		 (int numInvocations, OutputCase testCase);
1478 static std::string genGeometrySource (int numInvocations, OutputCase testCase);
1479 static size_t getNumVertices (int numInvocations, OutputCase testCase);
1485 InvocationCountShader::InvocationCountShader (int numInvocations, OutputCase testCase)
1496 getNumVertices(numInvocations, testCase),
1497 numInvocations)
1498 << sglr::pdec::GeometrySource(genGeometrySource(numInvocations, testCase).c_str()))
1499 , m_numInvocations (numInvocations)
1573 std::string InvocationCountShader::genGeometrySource (int numInvocations, OutputCase testCase)
1575 const int maxVertices = (int)getNumVertices(numInvocations, testCase);
1580 "layout(points, invocations = " << numInvocations << ") in;\n"
1588 " highp float l_angle = float(gl_InvocationID) / float(" << numInvocations << ") * 5.5;\n"
1639 size_t InvocationCountShader::getNumVertices (int numInvocations, OutputCase testCase)
1644 case CASE_DIFFERENT_OUTPUT_COUNTS: return (size_t)(2 + numInvocations);
1654 InstancedExpansionShader (int numInvocations);
1663 static std::string genGeometrySource (int numInvocations);
1668 InstancedExpansionShader::InstancedExpansionShader (int numInvocations)
1678 numInvocations)
1679 << sglr::pdec::GeometrySource(genGeometrySource(numInvocations).c_str()))
1680 , m_numInvocations (numInvocations)
1741 std::string InstancedExpansionShader::genGeometrySource (int numInvocations)
1747 "layout(points,invocations=" << numInvocations << ") in;\n"
1753 " highp float phase = float(gl_InvocationID) / float(" << numInvocations << ") * 6.3;\n"
4156 GeometryInvocationCase (Context& context, const char* name, const char* description, int numInvocations, OutputCase testCase);
4173 GeometryInvocationCase::GeometryInvocationCase (Context& context, const char* name, const char* description, int numInvocations, OutputCase testCase)
4176 , m_numInvocations (numInvocations)
4292 DrawInstancedGeometryInstancedCase (Context& context, const char* name, const char* description, int numInstances, int numInvocations);
4305 DrawInstancedGeometryInstancedCase::DrawInstancedGeometryInstancedCase (Context& context, const char* name, const char* description, int numInstances, int numInvocations)
4308 , m_numInvocations (numInvocations)
4309 , m_program (numInvocations)
6045 int numInvocations;
6062 invocationCases[ndx].numInvocations,
6067 if (invocationCases[ndx].numInvocations != 1)
6071 invocationCases[ndx].numInvocations,