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

  /external/eigen/demos/opengl/
gpuhelper.h 38 \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()); }
121 static void loadMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glLoadMatrixd(mat.data()); }
128 static void loadMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glLoadMatrixf(mat.transpose().eval().data()); }
129 static void loadMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glLoadMatrixd(mat.transpose().eval().data()); }
148 void GpuHelper::loadMatrix(
    [all...]
camera.cpp 241 gpu.loadMatrix(projectionMatrix(),GL_PROJECTION);
242 gpu.loadMatrix(viewMatrix().matrix(),GL_MODELVIEW);

Completed in 651 milliseconds