Lines Matching refs:numBlendFuncs
1511 const int numBlendFuncs = DE_LENGTH_OF_ARRAY(equations) * DE_LENGTH_OF_ARRAY(functions); in testFBO() local
1512 …std::vector<tcu::Vec4> gridVertices ((numBlendFuncs + 1) * (DE_LENGTH_OF_ARRAY(s_specialFloats) … in testFBO()
1513 std::vector<deUint16> indices (numBlendFuncs * DE_LENGTH_OF_ARRAY(s_specialFloats) * 6); in testFBO()
1520 for (int y = 0; y < numBlendFuncs + 1; ++y) in testFBO()
1523 const float posY = (float)y / (float)numBlendFuncs * 2.0f - 1.0f; in testFBO()
1525 gridVertices[x * (numBlendFuncs + 1) + y] = tcu::Vec4(posX, posY, 0.0f, 1.0f); in testFBO()
1530 for (int y = 0; y < numBlendFuncs; ++y) in testFBO()
1532 const int baseNdx = (x * numBlendFuncs + y) * 6; in testFBO()
1534 indices[baseNdx + 0] = (x+0) * (numBlendFuncs + 1) + (y+0); in testFBO()
1535 indices[baseNdx + 1] = (x+1) * (numBlendFuncs + 1) + (y+1); in testFBO()
1536 indices[baseNdx + 2] = (x+1) * (numBlendFuncs + 1) + (y+0); in testFBO()
1538 indices[baseNdx + 3] = (x+0) * (numBlendFuncs + 1) + (y+0); in testFBO()
1539 indices[baseNdx + 4] = (x+1) * (numBlendFuncs + 1) + (y+1); in testFBO()
1540 indices[baseNdx + 5] = (x+0) * (numBlendFuncs + 1) + (y+1); in testFBO()
1580 for (int y = 0; y < numBlendFuncs; ++y) in testFBO()
1585 const int indexIndex = (x * numBlendFuncs + y) * 6; in testFBO()