HomeSort by relevance Sort by last modified time
    Searched refs:multMatrix (Results 1 - 2 of 2) sorted by null

  /external/eigen/demos/opengl/
gpuhelper.h 41 void multMatrix(const Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget);
48 \sa Matrix, multMatrix(), forceMatrixMode()
59 Call this function before loadMatrix() or multMatrix() if you cannot guarantee that glMatrixMode()
60 has never been called after the last loadMatrix() or multMatrix() calls.
122 static void multMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glMultMatrixf(mat.data()); }
123 static void multMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glMultMatrixd(mat.data()); }
130 static void multMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glMultMatrixf(mat.transpose().eval().data()); }
131 static void multMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glMultMatrixd(mat.transpose().eval().data()); }
141 void GpuHelper::multMatrix(const Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget)
144 GlMatrixHelper<_Flags&Eigen::RowMajorBit, _Flags>::multMatrix(mat)
    [all...]
quaternion_demo.cpp 103 gpu.multMatrix(t.matrix(),GL_MODELVIEW);

Completed in 3789 milliseconds