mirror of
https://github.com/wolfpld/tracy.git
synced 2026-09-15 14:54:23 +00:00
Compare commits
4 Commits
slomp/webg
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd29819f3d | ||
|
|
2ba0e21c97 | ||
|
|
a6d16f5515 | ||
|
|
e58f4819ba |
2
.github/workflows/emscripten.yml
vendored
2
.github/workflows/emscripten.yml
vendored
@@ -69,7 +69,7 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build-emscripten
|
needs: build-emscripten
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master' && github.repository == 'wolfpld/tracy'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
- uses: wlixcc/SFTP-Deploy-Action@v1.2.4
|
- uses: wlixcc/SFTP-Deploy-Action@v1.2.4
|
||||||
|
|||||||
@@ -108,6 +108,15 @@ struct LockDraw
|
|||||||
std::vector<LockDrawItem> data;
|
std::vector<LockDrawItem> data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct LockHighlight
|
||||||
|
{
|
||||||
|
int64_t id;
|
||||||
|
int64_t begin;
|
||||||
|
int64_t end;
|
||||||
|
uint8_t thread;
|
||||||
|
bool blocked;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -22,6 +22,7 @@
|
|||||||
#include "TracyMarkdown.hpp"
|
#include "TracyMarkdown.hpp"
|
||||||
#include "TracySourceContents.hpp"
|
#include "TracySourceContents.hpp"
|
||||||
#include "TracyTimelineController.hpp"
|
#include "TracyTimelineController.hpp"
|
||||||
|
#include "TracyTimelineDraw.hpp"
|
||||||
#include "TracyUserData.hpp"
|
#include "TracyUserData.hpp"
|
||||||
#include "TracyUtility.hpp"
|
#include "TracyUtility.hpp"
|
||||||
#include "TracyViewData.hpp"
|
#include "TracyViewData.hpp"
|
||||||
|
|||||||
@@ -372,15 +372,6 @@ struct LockMap
|
|||||||
TimeRange range[64];
|
TimeRange range[64];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct LockHighlight
|
|
||||||
{
|
|
||||||
int64_t id;
|
|
||||||
int64_t begin;
|
|
||||||
int64_t end;
|
|
||||||
uint8_t thread;
|
|
||||||
bool blocked;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
struct GpuEvent
|
struct GpuEvent
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user