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);
392 void Matrix<T, Rows, Cols>::setColumn (int colNdx, const Vector<T, Rows>& vec) argument
394 m_data[colNdx] = vec;
407 Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) argument
409 return m_data[colNdx];
413 const Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) const
415 return m_data[colNdx];

Completed in 95 milliseconds