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

  /external/webkit/Source/WebCore/platform/graphics/android/
ShaderProgram.cpp 429 TransformationMatrix renderMatrix = m_documentToScreenMatrix * drawMatrix;
430 return renderMatrix.mapRect(srect);
437 TransformationMatrix renderMatrix = m_documentToInvScreenMatrix * drawMatrix;
438 return renderMatrix.mapRect(srect);
527 TransformationMatrix renderMatrix = m_projectionMatrix * modifiedDrawMatrix;
529 FloatPoint3D result = renderMatrix.mapPoint(point);
572 TransformationMatrix renderMatrix;
574 renderMatrix = m_projectionMatrix * m_repositionMatrix
577 renderMatrix = m_projectionMatrix * modifiedDrawMatrix;
580 GLUtils::toGLMatrix(projectionMatrix, renderMatrix);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCLayerImpl.cpp 177 TransformationMatrix renderMatrix = drawTransform();
178 renderMatrix.scale3d(bounds().width(), bounds().height(), 1);
179 toGLMatrix(&glMatrix[0], layerRenderer()->projectionMatrix() * renderMatrix);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.cpp 329 TransformationMatrix renderMatrix = drawMatrix;
332 renderMatrix.scale3d(width, height, 1);
335 toGLMatrix(&glMatrix[0], projectionMatrix * renderMatrix);
LayerRendererChromium.cpp 516 TransformationMatrix renderMatrix = matrix;
517 renderMatrix.scale3d(layer->bounds().width(), layer->bounds().height(), 1);
518 renderMatrix = m_projectionMatrix * renderMatrix;
521 FloatRect mappedRect = renderMatrix.mapRect(layerRect);
    [all...]
LayerTilerChromium.cpp 440 TransformationMatrix renderMatrix = drawMatrix;
443 renderMatrix.scale3d(width, height, 1);
446 LayerChromium::toGLMatrix(&glMatrix[0], projectionMatrix * renderMatrix);

Completed in 572 milliseconds