Searched refs:viewMatrix (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTarget.h338 * @param matrix optional matrix applied to rect (before viewMatrix)
491 * @param viewMatrix Optional view matrix. If init = kPreserve then the draw state's
496 AutoStateRestore(GrDrawTarget* target, ASRInit init, const SkMatrix* viewMatrix = NULL);
508 * @param viewMatrix Optional view matrix. If init = kPreserve then the draw state's
513 void set(GrDrawTarget* target, ASRInit init, const SkMatrix* viewMatrix = NULL);
517 * NULL was passed to set's viewMatrix param. When init is kPreserve it is as though
607 const SkMatrix* viewMatrix = NULL)
608 : fState(target, init, viewMatrix) {
H A DGrAAConvexPathRenderer.cpp605 SkMatrix viewMatrix = target->getDrawState().getViewMatrix(); local
616 if (viewMatrix.hasPerspective()) {
617 origPath.transform(viewMatrix, &tmpPath);
619 viewMatrix = SkMatrix::I();
634 if (!get_segments(*path, viewMatrix, &segments, &fanPt, &vCount, &iCount)) {
658 viewMatrix.mapRect(&devBounds);
H A DGrDrawState.h79 void setFromPaint(const GrPaint& , const SkMatrix& viewMatrix, GrRenderTarget*);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DRenderer.java126 * @param viewMatrix The view matrix to use.
129 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix); argument
H A DCamera.java199 protected Matrix4f viewMatrix = new Matrix4f(); field in class:Camera
276 cam.viewMatrix = viewMatrix.clone();
340 this.viewMatrix.set(cam.viewMatrix);
396 Matrix4f ivm = viewMatrix.clone();
1069 return viewMatrix;
1103 viewProjectionMatrix.set(projectionMatrixOverride).multLocal(viewMatrix);
1105 //viewProjectionMatrix.set(viewMatrix).multLocal(projectionMatrix);
1106 viewProjectionMatrix.set(projectionMatrix).multLocal(viewMatrix);
[all...]
H A DRenderManager.java84 private Matrix4f viewMatrix = new Matrix4f(); field in class:RenderManager
352 u.setValue(VarType.Matrix4, viewMatrix);
361 tempMat4.set(viewMatrix);
366 tempMat4.set(viewMatrix);
389 tempMat4.set(viewMatrix);
404 tempMat4.set(viewMatrix);
410 tempMat4.set(viewMatrix);
979 viewMatrix.set(Matrix4f.IDENTITY);
983 viewMatrix.set(cam.getViewMatrix());
/external/skia/src/gpu/
H A DGrDrawTarget.h338 * @param matrix optional matrix applied to rect (before viewMatrix)
491 * @param viewMatrix Optional view matrix. If init = kPreserve then the draw state's
496 AutoStateRestore(GrDrawTarget* target, ASRInit init, const SkMatrix* viewMatrix = NULL);
508 * @param viewMatrix Optional view matrix. If init = kPreserve then the draw state's
513 void set(GrDrawTarget* target, ASRInit init, const SkMatrix* viewMatrix = NULL);
517 * NULL was passed to set's viewMatrix param. When init is kPreserve it is as though
607 const SkMatrix* viewMatrix = NULL)
608 : fState(target, init, viewMatrix) {
H A DGrAAConvexPathRenderer.cpp605 SkMatrix viewMatrix = target->getDrawState().getViewMatrix(); local
616 if (viewMatrix.hasPerspective()) {
617 origPath.transform(viewMatrix, &tmpPath);
619 viewMatrix = SkMatrix::I();
634 if (!get_segments(*path, viewMatrix, &segments, &fanPt, &vCount, &iCount)) {
658 viewMatrix.mapRect(&devBounds);
H A DGrDrawState.h79 void setFromPaint(const GrPaint& , const SkMatrix& viewMatrix, GrRenderTarget*);
/external/eigen/demos/opengl/
H A Dquaternion_demo.cpp222 aux.orientation = mCamera.viewMatrix().linear();
223 aux.position = mCamera.viewMatrix().translation();
487 mInitFrame.position = mCamera.viewMatrix().translation();
517 aux0.position = mCamera.viewMatrix().translation();
526 aux1.position = mCamera.viewMatrix().translation();
540 aux1.position = mCamera.viewMatrix().translation();
H A Dcamera.h78 const Eigen::Affine3f& viewMatrix(void) const;
H A Dcamera.cpp205 const Affine3f& Camera::viewMatrix(void) const function in class:Camera
242 gpu.loadMatrix(viewMatrix().matrix(),GL_MODELVIEW);
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNullRenderer.java86 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) { argument
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
H A DLwjglGL1Renderer.java63 private Matrix4f viewMatrix = new Matrix4f(); field in class:LwjglGL1Renderer
437 private void setModelView(Matrix4f modelMatrix, Matrix4f viewMatrix){ argument
443 glLoadMatrix(storeMatrix(viewMatrix, fb16));
460 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) { argument
461 this.viewMatrix.set(viewMatrix);
472 setModelView(worldMatrix, viewMatrix);
520 glLoadMatrix(storeMatrix(viewMatrix, fb16));
623 setModelView(worldMatrix, viewMatrix);
H A DLwjglRenderer.java754 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) { argument
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp207 const SkMatrix& viewMatrix = this->getDrawState().getViewMatrix(); local
214 !fHWPathStencilMatrixState.fViewMatrix.cheapEqualTo(viewMatrix) ||
/external/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp207 const SkMatrix& viewMatrix = this->getDrawState().getViewMatrix(); local
214 !fHWPathStencilMatrixState.fViewMatrix.cheapEqualTo(viewMatrix) ||
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DOGLESShaderRenderer.java737 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) { argument

Completed in 386 milliseconds