• Home
  • Raw
  • Download

Lines Matching refs:level

282 void DisplayList::output(uint32_t level) {  in output()  argument
283 ALOGD("%*sStart display list (%p, %s, render=%d)", (level - 1) * 2, "", this, in output()
285 ALOGD("%*s%s %d", level * 2, "", "Save", in output()
288 outputViewProperties(level); in output()
291 mDisplayListData->displayListOps[i]->output(level, flags); in output()
294 ALOGD("%*sDone (%p, %s)", (level - 1) * 2, "", this, mName.string()); in output()
350 void DisplayList::outputViewProperties(const int level) { in outputViewProperties() argument
353 ALOGD("%*sTranslate (left, top) %d, %d", level * 2, "", mLeft, mTop); in outputViewProperties()
357 level * 2, "", mStaticMatrix, MATRIX_ARGS(mStaticMatrix)); in outputViewProperties()
361 level * 2, "", mAnimationMatrix, MATRIX_ARGS(mAnimationMatrix)); in outputViewProperties()
365 ALOGD("%*sTranslate %f, %f", level * 2, "", mTranslationX, mTranslationY); in outputViewProperties()
368 level * 2, "", mTransformMatrix, MATRIX_ARGS(mTransformMatrix)); in outputViewProperties()
375 ALOGD("%*sSetOverrideLayerAlpha %.2f", level * 2, "", mAlpha); in outputViewProperties()
377 ALOGD("%*sScaleAlpha %.2f", level * 2, "", mAlpha); in outputViewProperties()
384 ALOGD("%*sSaveLayerAlpha %.2f, %.2f, %.2f, %.2f, %d, 0x%x", level * 2, "", in outputViewProperties()
390 ALOGD("%*sClipRect %.2f, %.2f, %.2f, %.2f", level * 2, "", 0.0f, 0.0f, in outputViewProperties()
404 const int level) { in setViewProperties() argument
406 outputViewProperties(level); in setViewProperties()
452 DeferOperationHandler(DeferStateStruct& deferStruct, int level) in DeferOperationHandler() argument
453 : mDeferStruct(deferStruct), mLevel(level) {} in DeferOperationHandler()
462 void DisplayList::defer(DeferStateStruct& deferStruct, const int level) { in defer() argument
463 DeferOperationHandler handler(deferStruct, level); in defer()
464 iterate<DeferOperationHandler>(deferStruct.mRenderer, handler, level); in defer()
469 ReplayOperationHandler(ReplayStateStruct& replayStruct, int level) in ReplayOperationHandler() argument
470 : mReplayStruct(replayStruct), mLevel(level) {} in ReplayOperationHandler()
482 void DisplayList::replay(ReplayStateStruct& replayStruct, const int level) { in replay() argument
483 ReplayOperationHandler handler(replayStruct, level); in replay()
486 iterate<ReplayOperationHandler>(replayStruct.mRenderer, handler, level); in replay()
489 DISPLAY_LIST_LOGD("%*sDone (%p, %s), returning %d", level * 2, "", this, mName.string(), in replay()
503 void DisplayList::iterate(OpenGLRenderer& renderer, T& handler, const int level) { in iterate() argument
509 DISPLAY_LIST_LOGD("%*sEmpty display list (%p, %s)", level * 2, "", this, mName.string()); in iterate()
516 level * 2, "", this, mName.string(), clipRect->left, clipRect->top, in iterate()
524 DISPLAY_LIST_LOGD("%*sSave %d %d", (level + 1) * 2, "", in iterate()
527 setViewProperties<T>(renderer, handler, level + 1); in iterate()
530 DISPLAY_LIST_LOGD("%*sRestoreToCount %d", (level + 1) * 2, "", restoreTo); in iterate()
543 op->output(level + 1); in iterate()
546 logBuffer.writeCommand(level, op->name()); in iterate()
550 DISPLAY_LIST_LOGD("%*sRestoreToCount %d", (level + 1) * 2, "", restoreTo); in iterate()