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

  /external/chromium_org/ui/gfx/
transform_util.cc 152 SkMatrix44 perspectiveMatrix = matrix;
155 perspectiveMatrix.setDouble(3, i, 0.0);
157 perspectiveMatrix.setDouble(3, 3, 1.0);
161 if (std::abs(perspectiveMatrix.determinant()) < 1e-8)
175 // Solve the equation by inverting perspectiveMatrix and multiplying
178 if (!perspectiveMatrix.invert(&inversePerspectiveMatrix))
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
TransformationMatrix.cpp 314 // perspectiveMatrix is used to solve for perspective, but it also provides
316 TransformationMatrix::Matrix4 perspectiveMatrix;
317 memcpy(perspectiveMatrix, localMatrix, sizeof(TransformationMatrix::Matrix4));
319 perspectiveMatrix[i][3] = 0;
320 perspectiveMatrix[3][3] = 1;
322 if (determinant4x4(perspectiveMatrix) == 0)
334 // Solve the equation by inverting perspectiveMatrix and multiplying
338 inverse(perspectiveMatrix, inversePerspectiveMatrix);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp     [all...]

Completed in 109 milliseconds