gitextract_9g4qj153/ ├── .gitignore ├── 3rdparty/ │ └── Cinder-VNM/ │ ├── README.md │ ├── cinderblock.xml │ ├── imgui_remote_client/ │ │ ├── imgui/ │ │ │ ├── detector.js │ │ │ ├── lz4.js │ │ │ └── main.css │ │ ├── imgui.html │ │ └── imgui.js │ ├── include/ │ │ ├── AnsiToUtf.h │ │ ├── AssetManager.h │ │ ├── CaptureHelper.h │ │ ├── CinderGuizmo.h │ │ ├── CinderImGui.h │ │ ├── CinderImGuiExports.h │ │ ├── CinderRemoteImgui.h │ │ ├── CubemapRenderer.h │ │ ├── DearLogger.h │ │ ├── FontHelper.h │ │ ├── GLHelper.h │ │ ├── GlslParamsBuilder.h │ │ ├── GlslParamsBuilderImgui.h │ │ ├── LimitSingleInstance.h │ │ ├── MiniConfig.h │ │ ├── MiniConfigImgui.h │ │ ├── MotionHelper.h │ │ ├── NvOptimusEnablement.h │ │ ├── OscHelper.h │ │ ├── SharedMemory.h │ │ ├── StateMachine.h │ │ ├── TextureHelper.h │ │ ├── TuioHelper.h │ │ └── renderdoc_app.h │ ├── manually_copy_to_include/ │ │ └── item.def │ ├── src/ │ │ ├── AssetManager.cpp │ │ └── MiniConfig.cpp │ ├── templates/ │ │ ├── DepthSensor VNM/ │ │ │ ├── assets/ │ │ │ │ ├── shader.frag │ │ │ │ └── shader.vert │ │ │ ├── include/ │ │ │ │ └── item.def │ │ │ ├── src/ │ │ │ │ └── _TBOX_PREFIX_App.cpp │ │ │ └── template.xml │ │ ├── Melo Scene/ │ │ │ ├── include/ │ │ │ │ └── item.def │ │ │ ├── src/ │ │ │ │ └── _TBOX_PREFIX_App.cpp │ │ │ └── template.xml │ │ ├── Minimalist VNM/ │ │ │ ├── assets/ │ │ │ │ ├── shader.frag │ │ │ │ └── shader.vert │ │ │ ├── include/ │ │ │ │ └── item.def │ │ │ ├── src/ │ │ │ │ └── _TBOX_PREFIX_App.cpp │ │ │ └── template.xml │ │ └── NonGame/ │ │ ├── include/ │ │ │ └── item.def │ │ ├── src/ │ │ │ └── _TBOX_PREFIX_App.cpp │ │ └── template.xml │ └── ui/ │ ├── CinderGuizmo.cpp │ ├── CinderImGui.cpp │ ├── CinderMarkdown.cpp │ ├── CinderRemoteImgui.cpp │ ├── DearLogger.cpp │ ├── IconFontCppHeaders/ │ │ ├── IconsFontAwesome5.h │ │ ├── IconsFontAwesome5Pro.h │ │ ├── IconsFontAwesome5ProBrands.h │ │ ├── IconsFontaudio.h │ │ ├── IconsKenney.h │ │ └── IconsMaterialDesign.h │ ├── ImGuiColorTextEdit/ │ │ ├── .gitignore │ │ ├── CONTRIBUTING │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TextEditor.cpp │ │ └── TextEditor.h │ ├── ImGuizmo/ │ │ ├── ImGuizmo.cpp │ │ └── ImGuizmo.h │ ├── imgui/ │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── imgui_markdown/ │ │ ├── License.txt │ │ ├── README.md │ │ └── imgui_markdown.h │ ├── imgui_remote/ │ │ ├── imgui_remote.h │ │ ├── imgui_remote_webby.h │ │ ├── lz4/ │ │ │ ├── LICENSE │ │ │ ├── lz4.c │ │ │ ├── lz4.h │ │ │ ├── lz4frame.c │ │ │ ├── lz4frame.h │ │ │ ├── lz4frame_static.h │ │ │ ├── lz4hc.c │ │ │ ├── lz4hc.h │ │ │ ├── xxhash.c │ │ │ └── xxhash.h │ │ └── webby/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── webby.c │ │ ├── webby.h │ │ ├── webby_unix.h │ │ └── webby_win32.h │ └── implot/ │ ├── LICENSE │ ├── README.md │ ├── TODO.md │ ├── implot.cpp │ ├── implot.h │ ├── implot_demo.cpp │ ├── implot_internal.h │ └── implot_items.cpp ├── LICENSE ├── README.md ├── _config.yml ├── build.bat ├── deploy.bat ├── doc/ │ ├── README.md │ ├── android_application_profiling.md │ ├── android_platform_profiling.md │ ├── collect_etm_data_for_autofdo.md │ ├── debug_dwarf_unwinding.md │ ├── executable_commands_reference.md │ ├── inferno.md │ ├── jit_symbols.md │ ├── sample_filter.md │ └── scripts_reference.md ├── include/ │ ├── Resources.h │ └── item.def ├── simpleperf/ │ ├── __init__.py │ ├── annotate.py │ ├── api_profiler.py │ ├── app_profiler.py │ ├── bin/ │ │ └── android/ │ │ └── arm64/ │ │ └── simpleperf │ ├── binary_cache_builder.py │ ├── clean_reports.bat │ ├── debug_unwind_reporter.py │ ├── gecko_profile_generator.py │ ├── pprof_proto_generator.py │ ├── profile_pb2.py │ ├── report.py │ ├── report_firefox.bat │ ├── report_gui.bat │ ├── report_html.bat │ ├── report_html.js │ ├── report_html.py │ ├── report_sample.py │ ├── run.bat │ ├── run_simpleperf_on_device.py │ ├── run_simpleperf_without_usb_connection.py │ ├── simpleperf-help-report.txt │ ├── simpleperf.bat │ ├── simpleperf_report_lib.py │ ├── simpleperf_utils.py │ └── stackcollapse.py ├── src/ │ ├── LightSpeedApp.cpp │ ├── LightSpeedApp.gui.cpp │ └── LightSpeedApp.h └── vc2019/ ├── Resources.rc ├── perf-doctor.sln ├── perf-doctor.vcxproj ├── perf-doctor.vcxproj.filters └── resource.h