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

  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.h 338 * @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) {
    [all...]
GrAAConvexPathRenderer.cpp 605 SkMatrix viewMatrix = target->getDrawState().getViewMatrix();
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);
GrDrawState.h 79 void setFromPaint(const GrPaint& , const SkMatrix& viewMatrix, GrRenderTarget*);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Renderer.java 126 * @param viewMatrix The view matrix to use.
129 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix);
Camera.java 199 protected Matrix4f viewMatrix = new Matrix4f();
276 cam.viewMatrix = viewMatrix.clone();
340 this.viewMatrix.set(cam.viewMatrix);
396 Matrix4f ivm = viewMatrix.clone();
    [all...]
RenderManager.java 84 private Matrix4f viewMatrix = new Matrix4f();
351 case ViewMatrix:
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);
    [all...]
  /external/skia/src/gpu/
GrDrawTarget.h 338 * @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) {
    [all...]
GrAAConvexPathRenderer.cpp 605 SkMatrix viewMatrix = target->getDrawState().getViewMatrix();
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);
GrDrawState.h 79 void setFromPaint(const GrPaint& , const SkMatrix& viewMatrix, GrRenderTarget*);
    [all...]
  /external/eigen/demos/opengl/
quaternion_demo.cpp 222 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();
camera.h 78 const Eigen::Affine3f& viewMatrix(void) const;
camera.cpp 205 const Affine3f& Camera::viewMatrix(void) const
242 gpu.loadMatrix(viewMatrix().matrix(),GL_MODELVIEW);
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NullRenderer.java 86 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) {
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 63 private Matrix4f viewMatrix = new Matrix4f();
437 private void setModelView(Matrix4f modelMatrix, Matrix4f viewMatrix){
443 glLoadMatrix(storeMatrix(viewMatrix, fb16));
460 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) {
461 this.viewMatrix.set(viewMatrix);
472 setModelView(worldMatrix, viewMatrix);
520 glLoadMatrix(storeMatrix(viewMatrix, fb16));
623 setModelView(worldMatrix, viewMatrix);
    [all...]
LwjglRenderer.java 754 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) {
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL_program.cpp 207 const SkMatrix& viewMatrix = this->getDrawState().getViewMatrix();
214 !fHWPathStencilMatrixState.fViewMatrix.cheapEqualTo(viewMatrix) ||
  /external/skia/src/gpu/gl/
GrGpuGL_program.cpp 207 const SkMatrix& viewMatrix = this->getDrawState().getViewMatrix();
214 !fHWPathStencilMatrixState.fViewMatrix.cheapEqualTo(viewMatrix) ||
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
OGLESShaderRenderer.java 737 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) {
    [all...]

Completed in 428 milliseconds