HomeSort by relevance Sort by last modified time
    Searched refs:maxAttributes (Results 1 - 2 of 2) sorted by null

  /external/deqp/modules/glshared/
glsAttributeLocationTests.cpp 843 const deInt32 maxAttributes = getMaxAttributeLocations(m_renderCtx);
850 m_testCtx.getLog() << TestLog::Message << "GL_MAX_VERTEX_ATTRIBS: " << maxAttributes << TestLog::EndMessage;
852 for (int loc = maxAttributes - (arrayElementCount * m_type.getLocationSize()); loc >= 0; loc -= (arrayElementCount * m_type.getLocationSize()))
907 const deInt32 maxAttributes = getMaxAttributeLocations(m_renderCtx);
914 m_testCtx.getLog() << TestLog::Message << "GL_MAX_VERTEX_ATTRIBS: " << maxAttributes << TestLog::EndMessage;
916 for (int loc = maxAttributes - arrayElementCount * m_type.getLocationSize(); loc >= 0; loc -= m_type.getLocationSize() * arrayElementCount)
921 attributes.push_back(Attribute(m_type, "a_" + de::toString(ndx + maxAttributes), Attribute::LOC_UNDEF, Cond("A", false)));
922 bindings.push_back(Bind("a_" + de::toString(ndx + maxAttributes), loc));
944 const deInt32 maxAttributes = getMaxAttributeLocations(m_renderCtx);
958 for (int loc = 1 + m_type.getLocationSize() * arrayElementCount; loc < maxAttributes; loc++
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineVertexInputTests.cpp 464 const deUint32 maxAttributes = limits.maxVertexInputAttributes;
466 if (m_attributeInfos.size() > maxAttributes)
468 const std::string notSupportedStr = "Unsupported number of vertex input attributes, maxVertexInputAttributes: " + de::toString(maxAttributes);
475 m_maxAttributes = maxAttributes;
477 for (deUint32 i = 0; i < maxAttributes; i++)
    [all...]

Completed in 67 milliseconds