1. 04 4月, 2020 2 次提交
  2. 03 4月, 2020 3 次提交
  3. 02 4月, 2020 1 次提交
  4. 01 4月, 2020 4 次提交
  5. 31 3月, 2020 1 次提交
  6. 28 3月, 2020 1 次提交
  7. 27 3月, 2020 1 次提交
  8. 26 3月, 2020 2 次提交
  9. 25 3月, 2020 1 次提交
  10. 24 3月, 2020 3 次提交
  11. 23 3月, 2020 1 次提交
  12. 21 3月, 2020 3 次提交
  13. 18 3月, 2020 1 次提交
  14. 16 3月, 2020 1 次提交
  15. 11 3月, 2020 2 次提交
  16. 07 3月, 2020 1 次提交
  17. 06 3月, 2020 1 次提交
  18. 05 3月, 2020 3 次提交
    • K
      Avoid generating VSYNC trace events from Flutter common code. (#16248) · 7381ca8d
      Kirill Nikolaev 提交于
      Chrome Trace viewer treats events labeled "VSYNC" as special and highlights them (when the "Highlight Vsync" checkbox is enabled). Ideally VSYNC events are generated by the host system at their source. System VSYNC events are indeed present in full-system systraces. Flutter-level traces (as seen in Observatory/Flutter devtools) do not contain the system VSYNC events, so we rely on the engine to generate them (as close to where they would be generated by the system ideally).
      
      Currently the common (platform-independent code) generates VSYNC events at the time when the UI thread starts processing a frame. This has two drawbacks:
      1. The traces are generated with a delay (we wait for the callback to be have been scheduled on the UI thread instead of tracing as soon as the system notified us.
      2. When inspecting system-wide traces we'll have both the system and the Flutter app (or potentially multiple Flutter apps) generate VSYNC events at the same time. This confuses both the developers and the trace viewer.
      
      This change moves the VSYNC event generation to the platform-specific embedder implementations:
      1. On Android/iOS we always generate the VSYNC event since Android/iOS developers use Flutter tools to debug the apps.
      2. On Fuchsia we do not generate VSYNC events since the systraces always contain them.
      3. In the Embedder wrapper we don not generate VSYNC events and rely on the actual embedder to do this in a way appropriate for the target system.
      7381ca8d
    • G
      59b4d9b3
    • F
      Remove debug log (#16932) · 3362c5fa
      Flutter GitHub Bot 提交于
      3362c5fa
  19. 25 2月, 2020 1 次提交
  20. 23 2月, 2020 1 次提交
  21. 20 2月, 2020 1 次提交
  22. 12 2月, 2020 1 次提交
  23. 08 2月, 2020 1 次提交
  24. 06 2月, 2020 2 次提交
  25. 01 2月, 2020 1 次提交
    • C
      Remove all uses of the redundant flutter_root variable. (#16311) · f7b78e00
      Chinmay Garde 提交于
      This was only necessary when the Engine had to build in multiple buildroots
      where the sources where checked out at different paths relative to the
      buildroot. This is no longer the case and there are already cases GN rules
      have been written that mix and match variable usage with the direct
      specification of the path to the Flutter sources relative to the sole buildroot.
      f7b78e00