dotfiles from arch
This commit is contained in:
@@ -0,0 +1,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,
|
||||
}
|
||||
Reference in New Issue
Block a user