LeviLamina
Loading...
Searching...
No Matches
ViewStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bgfx {
6
7struct ViewStats {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<1, 256, char[256]> name;
12 ::ll::TypedStorage<2, 2, ushort> view;
13 ::ll::TypedStorage<8, 8, int64> cpuTimeElapsed;
14 ::ll::TypedStorage<8, 8, int64> cpuTimeBegin;
15 ::ll::TypedStorage<8, 8, uint64> gpuTimeBegin;
16 ::ll::TypedStorage<8, 8, uint64> gpuTimeEnd;
17 ::ll::TypedStorage<8, 8, int64> gpuTimeElapsed;
18 ::ll::TypedStorage<4, 4, uint> gpuFrameNum;
19 // NOLINTEND
20};
21
22} // namespace bgfx
Definition ViewStats.h:7