Searched defs:currentFrame (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DDamageAccumulator.cpp55 static void computeTransformImpl(const DirtyStack* currentFrame, Matrix4* outMatrix) { argument
56 if (currentFrame->prev != currentFrame) {
57 computeTransformImpl(currentFrame->prev, outMatrix);
59 switch (currentFrame->type) {
61 currentFrame->renderNode->applyViewPropertyTransforms(*outMatrix);
64 outMatrix->multiply(*currentFrame->matrix4);
70 LOG_ALWAYS_FATAL("Tried to compute transform with an invalid type: %d", currentFrame->type);

Completed in 212 milliseconds