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