Lines Matching full:attribndx
1666 for (int attribNdx = 0; attribNdx < 4; attribNdx++)
1668 m_userAttribTransforms[attribNdx] = Mat4(0.0f);
1669 m_userAttribTransforms[attribNdx]( 0, 3) = 0.2f; // !< prevent matrix*vec from going into zero (assuming vec.w != 0)
1670 m_userAttribTransforms[attribNdx]( 1, 3) = 0.1f; // !<
1671 m_userAttribTransforms[attribNdx]( 2, 3) = 0.4f + 0.15f * float(attribNdx); // !<
1672 m_userAttribTransforms[attribNdx]( 3, 3) = 0.7f; // !<
1673 m_userAttribTransforms[attribNdx]((0 + attribNdx) % 4, 0) = 1.0f;
1674 m_userAttribTransforms[attribNdx]((1 + attribNdx) % 4, 1) = 1.0f;
1675 m_userAttribTransforms[attribNdx]((2 + attribNdx) % 4, 2) = 1.0f;
1676 m_userAttribTransforms[attribNdx]((3 + attribNdx) % 4, 3) = 1.0f;
1682 for (int attribNdx = 0; attribNdx < 4; attribNdx++)
1690 m_userAttribTransforms[attribNdx](row, col) = -m_userAttribTransforms[attribNdx](row, col);
1693 m_userAttribTransforms[attribNdx](row, col) += 0.3f;
1696 m_userAttribTransforms[attribNdx](row, col) -= 0.3f;
1699 m_userAttribTransforms[attribNdx](row, col) = -m_userAttribTransforms[attribNdx](row, col) + 0.3f;
1702 m_userAttribTransforms[attribNdx](row, col) -= 0.1f;