Lines Matching refs:maxComponents
2504 glw::GLint maxComponents = 0;
2511 m_context.getRenderContext().getFunctions().getIntegerv(GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS, &maxComponents);
2514 m_testCtx.getLog() << tcu::TestLog::Message << "GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS = " << maxComponents << tcu::TestLog::EndMessage;
2521 m_spec.pattern[0] = de::min(maxVertices, maxComponents / componentsPerVertex);
2534 if (testVertices * componentsPerVertex > maxComponents)
3802 glw::GLint maxComponents = 0;
3805 m_context.getRenderContext().getFunctions().getIntegerv(GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS, &maxComponents);
3808 m_testCtx.getLog() << tcu::TestLog::Message << "GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS = " << maxComponents << tcu::TestLog::EndMessage;
3813 if (maxComponents < 1024)
3816 m_maxEmitCount = de::min(maxVertices, maxComponents / componentsPerVertex);
4393 int maxComponents = 0;
4403 gl.getIntegerv(GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS, &maxComponents);
4419 if (maxEmitCount * numComponents > maxComponents)