/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/ThirdParty/tracy/client/TracyKCore.hpp
37 строк
437 B
Jan Krassnigg
Updated Tracy and added button to launch it from editor (#1371)
18 авг 2024, 17:06
Не верифицирован
18 авг 2024, 17:06
61d9eec
Код
Авторство
О чём код?
#ifndef __TRACYKCORE_HPP__ #define __TRACYKCORE_HPP__ #ifdef __linux__ #include <stdint.h> #include "TracyFastVector.hpp" namespace tracy { class KCore { struct Offset { uint64_t start; uint64_t size; uint64_t offset; }; public: KCore(); ~KCore(); void* Retrieve( uint64_t addr, uint64_t size ) const; private: int m_fd; FastVector<Offset> m_offsets; }; } #endif #endif