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
2021-11-27Add fibers to TracyC.hslembcke
2021-11-26Pass full module path to LoadLibraryEx().Bartosz Taudul
2021-11-26Store paths to kernel modules.Bartosz Taudul
2021-11-26Update NEWS.Bartosz Taudul
2021-11-26Retrieve kernel symbols on Windows.Bartosz Taudul
2021-11-26Properly acknowledge unavailable symbol code.Bartosz Taudul
2021-11-26No need to remember addresses of symbol code queries.Bartosz Taudul
2021-11-26Don't filter out kernel symbols from code transfer.Bartosz Taudul
2021-11-26Dispatch kernel code retrieval.Bartosz Taudul
2021-11-26Add new metadata message, not for wire transfer.Bartosz Taudul
2021-11-26Rpmalloc is initialized here.Bartosz Taudul
2021-11-25Expose GetModuleName() outside TracyCallstack.cpp.Bartosz Taudul
2021-11-24Merge pull request #283 from expenses/c-gpu-zonesBartosz Taudul
Implement a bare-bones C API for graphics profiling
2021-11-24Add serial functionsAshley Ruglys
2021-11-24Remove the 'active' argumentAshley Ruglys
2021-11-22Fix one frame lag of out-of-trace dimming.Bartosz Taudul
2021-11-22Don't perform any work in collapsed windows.Bartosz Taudul
2021-11-22Increase big font size.Bartosz Taudul
2021-11-20Update manual.Bartosz Taudul
2021-11-20Handle magic dbghelp line numbers.Bartosz Taudul
https://github.com/Microsoft/microsoft-pdb/issues/16 https://docs.microsoft.com/en-us/archive/blogs/jmstall/line-hidden-and-0xfeefee-sequence-points
2021-11-20Add simple fiber example.Bartosz Taudul
2021-11-20Display jump target/source function names.Bartosz Taudul
2021-11-20Push small font to SourceView.Bartosz Taudul
2021-11-20Don't pass font to SourceView ctor.Bartosz Taudul
2021-11-20Adapt minimum samples distance to DPI scaling.Bartosz Taudul
2021-11-20Handle frame image dictionary creation failures.Bartosz Taudul
2021-11-20List jump source locations.Bartosz Taudul
2021-11-20Adapt hotness indicators to DPI scale.Bartosz Taudul
2021-11-20Keep text shadow offset constant.Bartosz Taudul
ImGui aligns the text to be pixel perfect. Fractional offset of shadow made it move not in sync with the text proper.
2021-11-20Don't provide number of segments to generate in a circle.Bartosz Taudul
2021-11-20Adapt context switch line size to DPI scale.Bartosz Taudul
2021-11-20Draw smaller "inline" index in callstacks.Bartosz Taudul
2021-11-20Apply DPI scale to text shadow.Bartosz Taudul
2021-11-20Move GetScale() to TracyImGui.hpp.Bartosz Taudul
2021-11-20Fonts should have integer size.Bartosz Taudul
Otherwise rendering artifacts will be present.
2021-11-20Replace Arimo with Droid Sans.Bartosz Taudul
2021-11-19Use font helpers.Bartosz Taudul
2021-11-19Add font set/unset helpers.Bartosz Taudul
2021-11-19Prevent out-of-bounds access.Bartosz Taudul
This fixes the issue when assembly view is scrolled to the bottom of the screen and display scale is reduced by the user. In such case clipper will report DisplayStart to be at the end element, which would cause out-of-bounds access to the m_asm array. Clipper self-fixes this in the next frame, so this workaround is enough.
2021-11-19Round jump arrows offsets.Bartosz Taudul
2021-11-19Update licenses.Bartosz Taudul
2021-11-19Replace Cousine fixed-width font with Fira Code Retina.Bartosz Taudul
2021-11-19Update source view font.Bartosz Taudul
2021-11-19Update font pointers held in main.cpp.Bartosz Taudul
2021-11-19Update NEWS.Bartosz Taudul
2021-11-19Add run-time UI scaling menu.Bartosz Taudul
2021-11-19Don't change ImGui fonts during render job.Bartosz Taudul
2021-11-19Reset style.Bartosz Taudul
2021-11-19Reload font atlas.Bartosz Taudul
2021-11-19Allow forceful insertion into main thread queue.Bartosz Taudul
This is useful to run some tasks outside of the main render job.