blob: 6a8ab4804b47527b7dcb8c6f50d293af9b95206d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
local originTracy
local function enable()
if not originTracy then
local suc = pcall(require, 'luatracy')
if suc then
originTracy = tracy
else
originTracy = {
ZoneBeginN = function (info) end,
ZoneEnd = function () end,
}
end
end
---@diagnostic disable-next-line: lowercase-global
tracy = originTracy
end
local function disable()
---@diagnostic disable-next-line: lowercase-global
tracy = {
ZoneBeginN = function (info) end,
ZoneEnd = function () end,
}
end
disable()
return {
enable = enable,
disable = disable,
}
|