Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the Tracy Profiler library to monitor performance #335

Merged
merged 46 commits into from
Nov 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
bf43919
Add unit tests for YUVData and web PNG format as vp8l
illidanstormrange Nov 5, 2024
42c93e0
Fix code format error
illidanstormrange Nov 5, 2024
c37ab75
Merge three yuv.txt into one data.yuv; Add some ASSERT and EXPECT
illidanstormrange Nov 5, 2024
514ae4c
Use Data::MakeFromfile replace Stream::MakeFormFile to Optimize code
illidanstormrange Nov 5, 2024
b1cfcd4
Fix code format error
illidanstormrange Nov 5, 2024
69f732d
Add canvas.atlas and PixelBuffer unit test
illidanstormrange Nov 5, 2024
d844ad4
Change ASSERT condition
illidanstormrange Nov 5, 2024
0407b14
Refine code and change the md5
illidanstormrange Nov 5, 2024
eae0a13
Merge main
illidanstormrange Nov 5, 2024
612c09e
Add some unit test about layer, and optimize DataView uint test
illidanstormrange Nov 6, 2024
1cb4810
merge main
illidanstormrange Nov 6, 2024
a88eb51
Update version.json
illidanstormrange Nov 6, 2024
52e0f39
Restore LayerTest.textLayer's surface width
illidanstormrange Nov 6, 2024
fff9f16
Update unit test version
illidanstormrange Nov 6, 2024
4a61379
Add ShaderSimulationMipmap unit test
illidanstormrange Nov 7, 2024
c7cca48
Update version.txt, fix code format error
illidanstormrange Nov 7, 2024
6f652d2
Restore npotTextureTileSupport to true
illidanstormrange Nov 7, 2024
c488ced
Rename ShaderSimulationMipmap to TileModeFallback
illidanstormrange Nov 7, 2024
98d0a76
Merge branch 'main' into feature/ljj_new_unit_test
illidanstormrange Nov 14, 2024
4ac2f75
Merge branch 'main' into feature/ljj_new_unit_test
illidanstormrange Nov 14, 2024
1fb20a3
Add TracyProfile module, measure the execution time of several functi…
illidanstormrange Nov 15, 2024
5f90df0
Enable profile when build type is Debug
illidanstormrange Nov 15, 2024
7b2f334
Add statistics for function execution time
illidanstormrange Nov 18, 2024
f9f790a
Merge branch 'main'into feature/ljj_new_unit_test
illidanstormrange Nov 21, 2024
e598166
Modify code format
illidanstormrange Nov 21, 2024
c8e7c59
Remove redundant code
illidanstormrange Nov 21, 2024
275d33a
Initialize the profiler tool commit using Tracy's native repository
illidanstormrange Nov 21, 2024
a1e561a
Change enable profiler to enable profiling.
illidanstormrange Nov 22, 2024
4617f2d
Third-party libraries tracy use the original git address; Change the …
illidanstormrange Nov 22, 2024
ca536d7
Merge two macros related to profiling in the cmake file
illidanstormrange Nov 22, 2024
a02582c
Simplify the profiling macro defined in CMAKE, ensure uniqueness.
illidanstormrange Nov 22, 2024
9fd2932
CMake adds the configuration to compile trace profiler
illidanstormrange Nov 22, 2024
35c3773
Merge branch 'main' into feature/ljj_new_unit_test
illidanstormrange Nov 22, 2024
d827264
Fix code format error
illidanstormrange Nov 22, 2024
8026879
Simplify Profiling related macro definitions
illidanstormrange Nov 22, 2024
67101f2
Merge branch 'main' into feature/ljj_new_unit_test
illidanstormrange Nov 22, 2024
e1f09e6
Add macro TRACY_NO_INVARIANT_CHECK=1 to avoid errors when running job…
illidanstormrange Nov 22, 2024
b86de17
Add compile option -DTRACY_NO_INVARIANT_CHECK=1
illidanstormrange Nov 22, 2024
af8f586
Add env TRACY_NO_INVARIANT_CHECK=1
illidanstormrange Nov 22, 2024
4dabb73
Replace the function name of TRACE_EVENT with __PRETTY_FUNCTION__;
illidanstormrange Nov 25, 2024
91d203a
During the execution of GitHub CI, set the environment variable TRACY…
illidanstormrange Nov 25, 2024
5090986
During the execution of GitHub CI, set the environment variable TRACY…
illidanstormrange Nov 25, 2024
2d4fcdf
Merge branch 'main' into feature/ljj_new_unit_test
illidanstormrange Nov 25, 2024
fcfad72
Fix initializer error
illidanstormrange Nov 25, 2024
435ff25
Add missing atomic header files
illidanstormrange Nov 25, 2024
8fefbe5
Remove the TracyProfiler server UI build in cmake
illidanstormrange Nov 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove redundant code
  • Loading branch information
illidanstormrange committed Nov 21, 2024
commit c8e7c596371dd8eaf1367b67e1ff1acf1f3478d6
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ option(TGFX_USE_QT "Allow build with QT frameworks." OFF)
option(TGFX_USE_SWIFTSHADER "Allow build with SwiftShader library" OFF)
option(TGFX_BUILD_SVG "Allow build the svg module" OFF)
option(TGFX_BUILD_DRAWERS "Build the tgfx-drawers library" OFF)
option(TGFX_ENABLE_PROFILE "Enable profile" OFF)
option(EMSCRIPTEN_PTHREADS "Allow the use of threads on the web platform" OFF)

if (CMAKE_BUILD_TYPE MATCHES "Debug")
Expand Down
Loading