Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-10Rename surfaceListener to include xdg part.HEADmasterBartosz Taudul
2022-11-10Manage list of outputs.Bartosz Taudul
2022-11-10Add global remove callback.Bartosz Taudul
2022-11-10Remove semicolons from lockable macros.Bartosz Taudul
2022-11-09Always provide Callstack() implementation, even if dummy.Bartosz Taudul
This fixes usage with TRACY_HAS_CALLSTACK undefined, allowing compilation of otherwise unused functions, which are already protected from being called through macro redirections. See https://github.com/wolfpld/tracy/pull/492 for more information.
2022-11-09Update ImGui to 4d5da74.Bartosz Taudul
2022-11-08Implement attention requests.Bartosz Taudul
2022-11-08Change xdg-shell to private-code.Bartosz Taudul
2022-11-08Add xdg-activation protocol.Bartosz Taudul
2022-11-08Move wayland protocol to a subdirectory.Bartosz Taudul
2022-11-08Wayland cursor handling is fucking stupid.Bartosz Taudul
2022-11-07Process pointer events.Bartosz Taudul
2022-11-07Hook seat.Bartosz Taudul
2022-11-06Set app id.Bartosz Taudul
2022-11-06Delay toplevel creation until after OpenGL initialization.Bartosz Taudul
2022-11-06Wait for xdg_surface to be configured.Bartosz Taudul
Some compositors require configuration event to happen before getting toplevel.
2022-11-06Downgrade wl_compositor protocol to version 4.Bartosz Taudul
Some compositors do not implement protocol in version 5.
2022-11-06Add minimal wayland backend.Bartosz Taudul
2022-11-06Add xdg-shell protocol.Bartosz Taudul
2022-11-03Merge pull request #488 from xxxbxxx/masterBartosz Taudul
Added typed plots variants to the C API
2022-11-03Update tracy.texxxxbxxx
mention the TracyCPlot variants in the manual.
2022-11-03Signals are only set if TRACY_NO_CRASH_HANDLER is not defined.Bartosz Taudul
2022-11-03Added typed plots variants to the C APIxxxbxxx
2022-10-30Pressing cancel is not an error.Bartosz Taudul
2022-10-30Display notification if there's a problem with file selector.Bartosz Taudul
2022-10-30Expose internal file selector failure state.Bartosz Taudul
2022-10-30Report if file selector can be displayed.Bartosz Taudul
2022-10-28Update NEWS.Bartosz Taudul
2022-10-28Override dlclose() to do nothing.Bartosz Taudul
Provide a custom no-op implementation of dlclose(), in order to prevent shared object data from disappearing from profiler view. The server makes queries for program executable code, which has to be always available, otherwise wrong data may be provided, or the program may crash, due to referencing no longer mapped memory. The dlclose() documentation states that the function internally decreases the reference count, and only does unload the shared object when the count reaches zero. There is no guarantee that the shared object data will be unloaded immediately after any dlclose call originating from the program. This function override exploits this fact.
2022-10-28Don't read payload.extra, if not needed.Bartosz Taudul
2022-10-28Update NEWS.Bartosz Taudul
2022-10-28Drop support for 0.7.x traces.Bartosz Taudul
2022-10-28Add 0.9 protocol version to protocol history.Bartosz Taudul
2022-10-27Release 0.9.0.v0.9Bartosz Taudul
2022-10-27Do not display unknown PIDs.Bartosz Taudul
2022-10-27Add compatibility with previous broadcast versions.Bartosz Taudul
2022-10-26Update NEWS.Bartosz Taudul
2022-10-26Remove graphical representation of instruction latencies.Bartosz Taudul
2022-10-26Move code size to assembly pane.Bartosz Taudul
2022-10-26Condense some more.Bartosz Taudul
2022-10-26Condense some text labels.Bartosz Taudul
2022-10-26Smaller font for symbol image name.Bartosz Taudul
2022-10-26Fix window focus issues when navigating with WSAD.Bartosz Taudul
2022-10-19Sleep in capture when waiting for connection.Bartosz Taudul
2022-10-19Further as-needed compression of jump graph.Bartosz Taudul
2022-10-19Condense jump arrows, depending on max depth of jump graph.Bartosz Taudul
2022-10-19Extract calculation of jump separation.Bartosz Taudul
2022-10-18Do not use thousands separator for source line numbers.Bartosz Taudul
2022-10-18Update manual.Bartosz Taudul
2022-10-18Update NEWS.Bartosz Taudul