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

/external/eigen/demos/opengl/
H A Dgpuhelper.h38 \sa Matrix, loadMatrix(), forceMatrixMode()
51 void loadMatrix(const Eigen::Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget);
54 void loadMatrix(
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.
120 static void loadMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glLoadMatrixf(mat.data()); } function in struct:GlMatrixHelper
121 static void loadMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glLoadMatrixd(mat.data()); } function in struct:GlMatrixHelper
128 static void loadMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glLoadMatrixf(mat.transpose().eval().data()); } function in struct:GlMatrixHelper
129 static void loadMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glLoadMatrixd(mat.transpose().eval().data()); } function in struct:GlMatrixHelper
148 void GpuHelper::loadMatrix( function in class:GpuHelper
157 void GpuHelper::loadMatrix(const Eigen::Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget) function in class:GpuHelper
[all...]

Completed in 50 milliseconds