mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
24 lines
307 B
C++
24 lines
307 B
C++
#ifndef __TRACYTIMELINECONTEXT_HPP__
|
|
#define __TRACYTIMELINECONTEXT_HPP__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "imgui.h"
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct TimelineContext
|
|
{
|
|
float w, ty, sty, scale;
|
|
float yMin, yMax;
|
|
double pxns, nspx;
|
|
int64_t vStart, vEnd;
|
|
ImVec2 wpos;
|
|
bool hover;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|