Searched defs:colNdx (Results 1 - 1 of 1) sorted by relevance

/external/deqp/framework/common/
H A DtcuMatrix.hpp75 void setColumn (int colNdx, const Vector<T, Rows>& vec);
402 void Matrix<T, Rows, Cols>::setColumn (int colNdx, const Vector<T, Rows>& vec) argument
404 m_data[colNdx] = vec;
417 Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) argument
419 return m_data[colNdx];
423 const Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) const
425 return m_data[colNdx];

Completed in 81 milliseconds