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

/external/deqp/framework/common/
H A DtcuMatrix.hpp59 void setColumn (int colNdx, const Vector<T, Rows>& vec);
386 void Matrix<T, Rows, Cols>::setColumn (int colNdx, const Vector<T, Rows>& vec) argument
388 m_data[colNdx] = vec;
401 Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) argument
403 return m_data[colNdx];
407 const Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) const
409 return m_data[colNdx];

Completed in 87 milliseconds