Lines Matching refs:attribNdx
1653 for (int attribNdx = 0; attribNdx < 4; attribNdx++)
1655 m_userAttribTransforms[attribNdx] = Mat4(0.0f);
1656 m_userAttribTransforms[attribNdx]( 0, 3) = 0.1f + 0.1f * float(attribNdx); // !< prevent matrix*vec from going into zero (assuming vec.w != 0)
1657 m_userAttribTransforms[attribNdx]( 1, 3) = 0.2f + 0.1f * float(attribNdx); // !<
1658 m_userAttribTransforms[attribNdx]( 2, 3) = 0.3f + 0.1f * float(attribNdx); // !<
1659 m_userAttribTransforms[attribNdx]( 3, 3) = 0.4f + 0.1f * float(attribNdx); // !<
1660 m_userAttribTransforms[attribNdx]((0 + attribNdx) % 4, 0) = 1.0f;
1661 m_userAttribTransforms[attribNdx]((1 + attribNdx) % 4, 1) = 1.0f;
1662 m_userAttribTransforms[attribNdx]((2 + attribNdx) % 4, 2) = 1.0f;
1663 m_userAttribTransforms[attribNdx]((3 + attribNdx) % 4, 3) = 1.0f;
1669 for (int attribNdx = 0; attribNdx < 4; attribNdx++)
1677 m_userAttribTransforms[attribNdx](row, col) = -m_userAttribTransforms[attribNdx](row, col);
1680 m_userAttribTransforms[attribNdx](row, col) += 0.3f;
1683 m_userAttribTransforms[attribNdx](row, col) -= 0.3f;
1686 m_userAttribTransforms[attribNdx](row, col) = -m_userAttribTransforms[attribNdx](row, col) + 0.3f;
1689 m_userAttribTransforms[attribNdx](row, col) -= 0.1f;
1704 for (int attribNdx = 0; attribNdx < 4; attribNdx++)
1709 m_userAttribTransforms[attribNdx](row, col) = deFloat16To32(deFloat32To16(m_userAttribTransforms[attribNdx](row, col)));