0
  1. 私が使用した、adb shell dumpsys gfxinfo

Draw、Process、Execute adb shell dumpsys gfxinfo に関するアプリ情報が空なのはなぜですか? その統計を空にする理由がわかりません。助けてください。

** Graphics info for pid 3213 [com.kabam.marvelbattle] **

Recent DisplayList operations
  Save
  ClipRect
  DrawDisplayList
    DrawPatch
    Save
    ClipRect
    Translate
    DrawPatch
    DrawDisplayList
      DrawText
    RestoreToCount
  DrawDisplayList
  RestoreToCount
DrawRect
DrawPatch
DrawPatch
DrawText
DrawDisplayList
  DrawDisplayList
    DrawDisplayList
      DrawRect
      Save
  ClipRect
  DrawDisplayList
    DrawPatch
    Save
    ClipRect
    Translate
    DrawPatch
    DrawDisplayList
      DrawRect
      DrawText
    RestoreToCount
  DrawDisplayList
  RestoreToCount
DrawRect
DrawPatch
DrawPatch
DrawRect
DrawText
SetupShader
DrawRect
ResetShader
DrawDisplayList
  DrawDisplayList
DrawDisplayList
  DrawDisplayList
    DrawColor
DrawRect
DrawColor

Caches:
Current memory usage / total memory usage (bytes):
  TextureCache            30052 / 75497472
  LayerCache                  0 / 50331648
  RenderBufferCache           0 /  8388608
  GradientCache               0 /  1048576
  PathCache                   0 / 33554432
  TextDropShadowCache         0 /  6291456
  PatchCache                768 /   131072
  FontRenderer 0 A8     1048576 /  1048576
  FontRenderer 0 RGBA         0 /        0
  FontRenderer 0 total  1048576 /  1048576
Other:
 FboCache                    0 /       16
Total memory usage:
  1079396 bytes, 1.03 MB

Profile data in ms:
com.kabam.marvelbattle/com.explodingbarrel.Activity/android.view.ViewRootImpl@41a7df30
    Draw    Process Execute

View hierarchy:

  com.kabam.marvelbattle/com.explodingbarrel.Activity/android.view.ViewRootImpl@41a7df30

6 ビュー、0.22 kB の表示リスト、5 フレームのレンダリング

Total ViewRootImpl: 1
Total Views:        6
Total DisplayList:  0.22 kB
4

1 に答える 1

0

AOSP には、UI をレンダリングする方法がいくつかあります。

  • SKIA などの CPU ライブラリに基づく
  • ハードウェア アクセラレーション ライブラリに基づく - HWUI など

上記のログの場合、出力は - アクティビティが高速化された HWUI を使用していない -アクティビティのビューに割り当てられたHardwareRenderer実装がないことを意味します。dumpGfxInfo () API実装には、ここに出力するものは何もありません -ソースを参照してください

ここに関連する質問がありますJB で GPU バックエンドを使用して skia を有効にする方法- HWUI の使用を有効にする

于 2017-10-27T15:37:02.833 に答える