OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:perspectiveMatrix
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformationMatrix.cpp
313
//
perspectiveMatrix
is used to solve for perspective, but it also provides
315
TransformationMatrix::Matrix4
perspectiveMatrix
;
316
memcpy(
perspectiveMatrix
, localMatrix, sizeof(TransformationMatrix::Matrix4));
318
perspectiveMatrix
[i][3] = 0;
319
perspectiveMatrix
[3][3] = 1;
321
if (determinant4x4(
perspectiveMatrix
) == 0)
333
// Solve the equation by inverting
perspectiveMatrix
and multiplying
337
inverse(
perspectiveMatrix
, inversePerspectiveMatrix);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp
[
all
...]
Completed in 343 milliseconds